diff options
Diffstat (limited to 'drivers/hwmon/asb100.c')
-rw-r--r-- | drivers/hwmon/asb100.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/hwmon/asb100.c b/drivers/hwmon/asb100.c index 815493b9788d..3f434de1d993 100644 --- a/drivers/hwmon/asb100.c +++ b/drivers/hwmon/asb100.c | |||
@@ -519,10 +519,8 @@ static ssize_t show_vrm(struct device *dev, struct device_attribute *attr, char | |||
519 | 519 | ||
520 | static ssize_t set_vrm(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) | 520 | static ssize_t set_vrm(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
521 | { | 521 | { |
522 | struct i2c_client *client = to_i2c_client(dev); | 522 | struct asb100_data *data = dev_get_drvdata(dev); |
523 | struct asb100_data *data = i2c_get_clientdata(client); | 523 | data->vrm = simple_strtoul(buf, NULL, 10); |
524 | unsigned long val = simple_strtoul(buf, NULL, 10); | ||
525 | data->vrm = val; | ||
526 | return count; | 524 | return count; |
527 | } | 525 | } |
528 | 526 | ||