aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/leds/leds-sunfire.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-05-23 03:28:33 -0700
committerBryan Wu <cooloney@gmail.com>2013-06-20 16:21:33 -0700
commit84196a2ffbac42f1649cc6e193be6016b233d312 (patch)
tree7f65cd4311e8db3c250f85a5527c4b8b73247f15 /drivers/leds/leds-sunfire.c
parentleds: leds-gpio: Let device core handle pinctrl (diff)
downloadwireguard-linux-84196a2ffbac42f1649cc6e193be6016b233d312.tar.xz
wireguard-linux-84196a2ffbac42f1649cc6e193be6016b233d312.zip
leds: use platform_{get,set}_drvdata()
Use the wrapper functions for getting and setting the driver data using platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev, so we can directly pass a struct platform_device. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'drivers/leds/leds-sunfire.c')
-rw-r--r--drivers/leds/leds-sunfire.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-sunfire.c b/drivers/leds/leds-sunfire.c
index 89792990088d..388632d23d44 100644
--- a/drivers/leds/leds-sunfire.c
+++ b/drivers/leds/leds-sunfire.c
@@ -159,14 +159,14 @@ static int sunfire_led_generic_probe(struct platform_device *pdev,
}
}
- dev_set_drvdata(&pdev->dev, p);
+ platform_set_drvdata(pdev, p);
return 0;
}
static int sunfire_led_generic_remove(struct platform_device *pdev)
{
- struct sunfire_drvdata *p = dev_get_drvdata(&pdev->dev);
+ struct sunfire_drvdata *p = platform_get_drvdata(pdev);
int i;
for (i = 0; i < NUM_LEDS_PER_BOARD; i++)