projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3a987b
)
hwmon: (nct7802) Fix voltage limits to wrong registers
author
Gilles Buloz
<gilles.buloz@kontron.com>
Wed, 27 Nov 2019 17:09:34 +0000
(18:09 +0100)
committer
Guenter Roeck
<linux@roeck-us.net>
Fri, 17 Jan 2020 15:56:48 +0000
(07:56 -0800)
in0 thresholds are written to the in2 thresholds registers
in2 thresholds to in3 thresholds
in3 thresholds to in4 thresholds
in4 thresholds to in0 thresholds
Signed-off-by: Gilles Buloz <gilles.buloz@kontron.com>
Link:
https://lore.kernel.org/r/5de0f509.rc0oEvPOMjbfPW1w%gilles.buloz@kontron.com
Fixes:
3434f3783580
("hwmon: Driver for Nuvoton NCT7802Y")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/nct7802.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/nct7802.c
b/drivers/hwmon/nct7802.c
index
f3dd2a1
..
7915c2f
100644
(file)
--- a/
drivers/hwmon/nct7802.c
+++ b/
drivers/hwmon/nct7802.c
@@
-23,8
+23,8
@@
static const u8 REG_VOLTAGE[5] = { 0x09, 0x0a, 0x0c, 0x0d, 0x0e };
static const u8 REG_VOLTAGE_LIMIT_LSB[2][5] = {
- { 0x4
0, 0x00, 0x42, 0x44, 0x46
},
- { 0x
3f, 0x00, 0x41, 0x43, 0x45
},
+ { 0x4
6, 0x00, 0x40, 0x42, 0x44
},
+ { 0x
45, 0x00, 0x3f, 0x41, 0x43
},
};
static const u8 REG_VOLTAGE_LIMIT_MSB[5] = { 0x48, 0x00, 0x47, 0x47, 0x48 };