aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-pcf857x.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-07-30 04:08:05 -0400
committerLinus Walleij <linus.walleij@linaro.org>2013-08-16 09:24:35 -0400
commite56aee1897fd27631c1cb28e12b0fb8f8f9736f7 (patch)
treee381b206fd8a6fd8ce2555fa1b02143e21dd1c46 /drivers/gpio/gpio-pcf857x.c
parentc0e811d9f5d1ee708f06c4f0a1009f8a1d22f364 (diff)
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-pcf857x.c')
-rw-r--r--drivers/gpio/gpio-pcf857x.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-pcf857x.c b/drivers/gpio/gpio-pcf857x.c
index e8faf53f3875..e8835d64e921 100644
--- a/drivers/gpio/gpio-pcf857x.c
+++ b/drivers/gpio/gpio-pcf857x.c
@@ -262,7 +262,7 @@ static int pcf857x_probe(struct i2c_client *client,
262 struct pcf857x *gpio; 262 struct pcf857x *gpio;
263 int status; 263 int status;
264 264
265 pdata = client->dev.platform_data; 265 pdata = dev_get_platdata(&client->dev);
266 if (!pdata) { 266 if (!pdata) {
267 dev_dbg(&client->dev, "no platform data\n"); 267 dev_dbg(&client->dev, "no platform data\n");
268 } 268 }
@@ -396,7 +396,7 @@ fail:
396 396
397static int pcf857x_remove(struct i2c_client *client) 397static int pcf857x_remove(struct i2c_client *client)
398{ 398{
399 struct pcf857x_platform_data *pdata = client->dev.platform_data; 399 struct pcf857x_platform_data *pdata = dev_get_platdata(&client->dev);
400 struct pcf857x *gpio = i2c_get_clientdata(client); 400 struct pcf857x *gpio = i2c_get_clientdata(client);
401 int status = 0; 401 int status = 0;
402 402