diff options
author | Julia Lawall <Julia.Lawall@inria.fr> | 2021-02-09 22:13:25 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2021-02-12 11:01:45 +0100 |
commit | 0b5e0f45af403cb6e9df574e1cb52691611dc0b8 (patch) | |
tree | 6c3ba88b8a35abf5525655d8bb79d030b1c89fe9 /drivers/video/backlight | |
parent | backlight: ktd253: Bring up in a known state (diff) | |
download | linux-0b5e0f45af403cb6e9df574e1cb52691611dc0b8.tar.xz linux-0b5e0f45af403cb6e9df574e1cb52691611dc0b8.zip |
backlight/video: Use Platform getter/setter functions
Use getter and setter functions, for platform_device structures and a
spi_device structure.
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/video/backlight')
-rw-r--r-- | drivers/video/backlight/qcom-wled.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/backlight/qcom-wled.c b/drivers/video/backlight/qcom-wled.c index 3bc7800eb0a9..091f07e7c145 100644 --- a/drivers/video/backlight/qcom-wled.c +++ b/drivers/video/backlight/qcom-wled.c @@ -1692,7 +1692,7 @@ static int wled_probe(struct platform_device *pdev) static int wled_remove(struct platform_device *pdev) { - struct wled *wled = dev_get_drvdata(&pdev->dev); + struct wled *wled = platform_get_drvdata(pdev); mutex_destroy(&wled->lock); cancel_delayed_work_sync(&wled->ovp_work); |