diff options
| author | Jingoo Han <[email protected]> | 2013-07-30 08:08:05 +0000 |
|---|---|---|
| committer | Linus Walleij <[email protected]> | 2013-08-16 13:24:35 +0000 |
| commit | e56aee1897fd27631c1cb28e12b0fb8f8f9736f7 (patch) | |
| tree | e381b206fd8a6fd8ce2555fa1b02143e21dd1c46 /drivers/gpio/gpio-max730x.c | |
| parent | gpio/mxc: add chained_irq_enter/exit() to mx2_gpio_irq_handler (diff) | |
| download | kernel-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-max730x.c')
| -rw-r--r-- | drivers/gpio/gpio-max730x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-max730x.c b/drivers/gpio/gpio-max730x.c index 00092342b84c..f4f4ed19bdc1 100644 --- a/drivers/gpio/gpio-max730x.c +++ b/drivers/gpio/gpio-max730x.c @@ -166,7 +166,7 @@ int __max730x_probe(struct max7301 *ts) struct max7301_platform_data *pdata; int i, ret; - pdata = dev->platform_data; + pdata = dev_get_platdata(dev); mutex_init(&ts->lock); dev_set_drvdata(dev, ts); |
