mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
mfd: ssbi: Use devm_of_platform_populate()
Use devm_of_platform_populate() instead of of_platform_populate() to be sure that of_platform_depopulate() is called when removing the driver. Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
18f7739379
commit
f38aa351d0
@ -314,7 +314,7 @@ static int ssbi_probe(struct platform_device *pdev)
|
||||
|
||||
spin_lock_init(&ssbi->lock);
|
||||
|
||||
return of_platform_populate(np, NULL, NULL, &pdev->dev);
|
||||
return devm_of_platform_populate(&pdev->dev);
|
||||
}
|
||||
|
||||
static const struct of_device_id ssbi_match_table[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user