aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/nct6775.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-07-30 17:13:06 +0900
committerGuenter Roeck <linux@roeck-us.net>2013-08-11 22:10:39 -0700
commita8b3a3a53f9a814e9938ea9cc179086ff5c0a387 (patch)
tree6905bf9311520248db9cdd63b8d7e1a1840b10b8 /drivers/hwmon/nct6775.c
parenthwmon: (nct6775) Fix size of data->temp array (diff)
downloadlinux-dev-a8b3a3a53f9a814e9938ea9cc179086ff5c0a387.tar.xz
linux-dev-a8b3a3a53f9a814e9938ea9cc179086ff5c0a387.zip
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/nct6775.c')
-rw-r--r--drivers/hwmon/nct6775.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/nct6775.c b/drivers/hwmon/nct6775.c
index 25e2c7bea48c..a0ace075e918 100644
--- a/drivers/hwmon/nct6775.c
+++ b/drivers/hwmon/nct6775.c
@@ -3285,7 +3285,7 @@ static void add_temp_sensors(struct nct6775_data *data, const u16 *regp,
static int nct6775_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
- struct nct6775_sio_data *sio_data = dev->platform_data;
+ struct nct6775_sio_data *sio_data = dev_get_platdata(dev);
struct nct6775_data *data;
struct resource *res;
int i, s, err = 0;