diff options
Diffstat (limited to 'drivers/hwmon/w83791d.c')
-rw-r--r-- | drivers/hwmon/w83791d.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/hwmon/w83791d.c b/drivers/hwmon/w83791d.c index a9c01a6f0057..85bd21ee3298 100644 --- a/drivers/hwmon/w83791d.c +++ b/drivers/hwmon/w83791d.c | |||
@@ -840,14 +840,12 @@ static ssize_t store_vrm_reg(struct device *dev, | |||
840 | struct device_attribute *attr, | 840 | struct device_attribute *attr, |
841 | const char *buf, size_t count) | 841 | const char *buf, size_t count) |
842 | { | 842 | { |
843 | struct i2c_client *client = to_i2c_client(dev); | 843 | struct w83791d_data *data = dev_get_drvdata(dev); |
844 | struct w83791d_data *data = i2c_get_clientdata(client); | ||
845 | unsigned long val = simple_strtoul(buf, NULL, 10); | ||
846 | 844 | ||
847 | /* No lock needed as vrm is internal to the driver | 845 | /* No lock needed as vrm is internal to the driver |
848 | (not read from a chip register) and so is not | 846 | (not read from a chip register) and so is not |
849 | updated in w83791d_update_device() */ | 847 | updated in w83791d_update_device() */ |
850 | data->vrm = val; | 848 | data->vrm = simple_strtoul(buf, NULL, 10); |
851 | 849 | ||
852 | return count; | 850 | return count; |
853 | } | 851 | } |