diff options
author | Benjamin Gaignard <[email protected]> | 2017-05-29 17:45:51 +0200 |
---|---|---|
committer | Shawn Guo <[email protected]> | 2017-06-05 09:57:14 +0800 |
commit | f3ca01d3d7793f76a03ff17945e1b1f2138be9fb (patch) | |
tree | 129fb4aacd816d8dc98b347c1dc7bfbfb1f73bdf | |
parent | 7f696942a7e52df2a99410bf23da513f9aad04fb (diff) |
drm: zte: use devm_of_platform_populate()
Use devm_of_platform_populate() to be sure that of_platform_depopulate
is called when removing the driver.
Signed-off-by: Benjamin Gaignard <[email protected]>
CC: Shawn Guo <[email protected]>
CC: David Airlie <[email protected]>
CC: [email protected]
CC: [email protected]
Signed-off-by: Shawn Guo <[email protected]>
Link: http://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/zte/zx_drm_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/zte/zx_drm_drv.c b/drivers/gpu/drm/zte/zx_drm_drv.c index 490aafc99610..f46c855d274b 100644 --- a/drivers/gpu/drm/zte/zx_drm_drv.c +++ b/drivers/gpu/drm/zte/zx_drm_drv.c @@ -196,7 +196,7 @@ static int zx_drm_probe(struct platform_device *pdev) struct component_match *match = NULL; int ret; - ret = of_platform_populate(parent, NULL, NULL, dev); + ret = devm_of_platform_populate(dev); if (ret) return ret; |