aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2012-03-12 08:21:16 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-03-19 08:57:59 -0700
commitbaf9f08ae4a3e041e718b2e9843400faab15ccda (patch)
treef625e2b769ad8aeab89f474324047617e00b6f33 /drivers/hwmon
parent0af6af909e28dc66e0ce8846fccf0e5a70c28415 (diff)
downloadkernel_samsung_smdk4412-baf9f08ae4a3e041e718b2e9843400faab15ccda.zip
kernel_samsung_smdk4412-baf9f08ae4a3e041e718b2e9843400faab15ccda.tar.gz
kernel_samsung_smdk4412-baf9f08ae4a3e041e718b2e9843400faab15ccda.tar.bz2
hwmon: (w83627ehf) Fix writing into fan_stop_time for NCT6775F/NCT6776F
commit 33fa9b620409edfc71aa6cf01a51f990fbe46ab8 upstream. NCT6775F and NCT6776F have their own set of registers for FAN_STOP_TIME. The correct registers were used to read FAN_STOP_TIME, but writes used the wrong registers. Fix it. Signed-off-by: Guenter Roeck <linux@roeck-us.net> Acked-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/w83627ehf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c
index 359bb1e..685399b 100644
--- a/drivers/hwmon/w83627ehf.c
+++ b/drivers/hwmon/w83627ehf.c
@@ -1583,7 +1583,7 @@ store_##reg(struct device *dev, struct device_attribute *attr, \
val = step_time_to_reg(val, data->pwm_mode[nr]); \
mutex_lock(&data->update_lock); \
data->reg[nr] = val; \
- w83627ehf_write_value(data, W83627EHF_REG_##REG[nr], val); \
+ w83627ehf_write_value(data, data->REG_##REG[nr], val); \
mutex_unlock(&data->update_lock); \
return count; \
} \