diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-07-30 10:08:05 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-08-16 15:24:35 +0200 |
commit | e56aee1897fd27631c1cb28e12b0fb8f8f9736f7 (patch) | |
tree | e381b206fd8a6fd8ce2555fa1b02143e21dd1c46 /drivers/gpio/gpio-pca953x.c | |
parent | gpio/mxc: add chained_irq_enter/exit() to mx2_gpio_irq_handler (diff) | |
download | linux-e56aee1897fd27631c1cb28e12b0fb8f8f9736f7.tar.xz linux-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 <jg1.han@samsung.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-pca953x.c')
-rw-r--r-- | drivers/gpio/gpio-pca953x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c index 426c51dd420c..07651d30ba8b 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c @@ -731,7 +731,7 @@ static int pca953x_probe(struct i2c_client *client, if (chip == NULL) return -ENOMEM; - pdata = client->dev.platform_data; + pdata = dev_get_platdata(&client->dev); if (pdata) { irq_base = pdata->irq_base; chip->gpio_start = pdata->gpio_base; @@ -785,7 +785,7 @@ static int pca953x_probe(struct i2c_client *client, static int pca953x_remove(struct i2c_client *client) { - struct pca953x_platform_data *pdata = client->dev.platform_data; + struct pca953x_platform_data *pdata = dev_get_platdata(&client->dev); struct pca953x_chip *chip = i2c_get_clientdata(client); int ret = 0; |