summaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/w83627hf.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-07-30 04:13:06 -0400
committerGuenter Roeck <linux@roeck-us.net>2013-08-12 01:10:39 -0400
commita8b3a3a53f9a814e9938ea9cc179086ff5c0a387 (patch)
tree6905bf9311520248db9cdd63b8d7e1a1840b10b8 /drivers/hwmon/w83627hf.c
parentf58876ac8c73f91c28f7825dee37ad64092eccf7 (diff)
hwmon: 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: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/w83627hf.c')
-rw-r--r--drivers/hwmon/w83627hf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/w83627hf.c b/drivers/hwmon/w83627hf.c
index 3b9ef2d23452..cb9cd326ecb5 100644
--- a/drivers/hwmon/w83627hf.c
+++ b/drivers/hwmon/w83627hf.c
@@ -1415,7 +1415,7 @@ static const struct attribute_group w83627hf_group_opt = {
1415static int w83627hf_probe(struct platform_device *pdev) 1415static int w83627hf_probe(struct platform_device *pdev)
1416{ 1416{
1417 struct device *dev = &pdev->dev; 1417 struct device *dev = &pdev->dev;
1418 struct w83627hf_sio_data *sio_data = dev->platform_data; 1418 struct w83627hf_sio_data *sio_data = dev_get_platdata(dev);
1419 struct w83627hf_data *data; 1419 struct w83627hf_data *data;
1420 struct resource *res; 1420 struct resource *res;
1421 int err, i; 1421 int err, i;
@@ -1636,7 +1636,7 @@ static int w83627hf_read_value(struct w83627hf_data *data, u16 reg)
1636 1636
1637static int w83627thf_read_gpio5(struct platform_device *pdev) 1637static int w83627thf_read_gpio5(struct platform_device *pdev)
1638{ 1638{
1639 struct w83627hf_sio_data *sio_data = pdev->dev.platform_data; 1639 struct w83627hf_sio_data *sio_data = dev_get_platdata(&pdev->dev);
1640 int res = 0xff, sel; 1640 int res = 0xff, sel;
1641 1641
1642 superio_enter(sio_data); 1642 superio_enter(sio_data);
@@ -1669,7 +1669,7 @@ exit:
1669 1669
1670static int w83687thf_read_vid(struct platform_device *pdev) 1670static int w83687thf_read_vid(struct platform_device *pdev)
1671{ 1671{
1672 struct w83627hf_sio_data *sio_data = pdev->dev.platform_data; 1672 struct w83627hf_sio_data *sio_data = dev_get_platdata(&pdev->dev);
1673 int res = 0xff; 1673 int res = 0xff;
1674 1674
1675 superio_enter(sio_data); 1675 superio_enter(sio_data);