aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-janz-ttl.c
diff options
context:
space:
mode:
authorJingoo Han <[email protected]>2013-07-30 08:08:05 +0000
committerLinus Walleij <[email protected]>2013-08-16 13:24:35 +0000
commite56aee1897fd27631c1cb28e12b0fb8f8f9736f7 (patch)
treee381b206fd8a6fd8ce2555fa1b02143e21dd1c46 /drivers/gpio/gpio-janz-ttl.c
parentgpio/mxc: add chained_irq_enter/exit() to mx2_gpio_irq_handler (diff)
downloadkernel-e56aee1897fd27631c1cb28e12b0fb8f8f9736f7.tar.gz
kernel-e56aee1897fd27631c1cb28e12b0fb8f8f9736f7.zip
gpio: use dev_get_platdata()
Use the wrapper function for retrieving the platform data instead of accessing dev->platform_data directly. Signed-off-by: Jingoo Han <[email protected]> Signed-off-by: Linus Walleij <[email protected]>
Diffstat (limited to 'drivers/gpio/gpio-janz-ttl.c')
-rw-r--r--drivers/gpio/gpio-janz-ttl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-janz-ttl.c b/drivers/gpio/gpio-janz-ttl.c
index 7d0a04169a35..2ecd3a09c743 100644
--- a/drivers/gpio/gpio-janz-ttl.c
+++ b/drivers/gpio/gpio-janz-ttl.c
@@ -149,7 +149,7 @@ static int ttl_probe(struct platform_device *pdev)
struct resource *res;
int ret;
- pdata = pdev->dev.platform_data;
+ pdata = dev_get_platdata(&pdev->dev);
if (!pdata) {
dev_err(dev, "no platform data\n");
ret = -ENXIO;