diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-08-19 11:52:17 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-08-19 11:52:17 -0400 |
commit | 3f318b3cf87821625965344fbb30ca0fe077ef57 (patch) | |
tree | 3ba30325d047acd43c8ebfe2122593c2c5016a71 | |
parent | 952b159f2919a8d514f13999f9f463bddcc1dae7 (diff) | |
parent | 4a008c002133aba0276cbc5d116bbb774aaf1b0d (diff) |
Merge tag 'hwmon-for-linus-v4.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
Pull hwmon fixes from Guenter Roeck:
"Fix a bug in it87 driver and URLs in ftsteutates driver"
* tag 'hwmon-for-linus-v4.8-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
hwmon: (ftsteutates) Correct ftp urls in driver documentation
hwmon: (it87) Features mask must be 32 bit wide
-rw-r--r-- | Documentation/hwmon/ftsteutates | 4 | ||||
-rw-r--r-- | drivers/hwmon/it87.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/hwmon/ftsteutates b/Documentation/hwmon/ftsteutates index 2a1bf69c6a26..8c10a916de20 100644 --- a/Documentation/hwmon/ftsteutates +++ b/Documentation/hwmon/ftsteutates | |||
@@ -19,5 +19,5 @@ enhancements. It can monitor up to 4 voltages, 16 temperatures and | |||
19 | implemented in this driver. | 19 | implemented in this driver. |
20 | 20 | ||
21 | Specification of the chip can be found here: | 21 | Specification of the chip can be found here: |
22 | ftp:///pub/Mainboard-OEM-Sales/Services/Software&Tools/Linux_SystemMonitoring&Watchdog&GPIO/BMC-Teutates_Specification_V1.21.pdf | 22 | ftp://ftp.ts.fujitsu.com/pub/Mainboard-OEM-Sales/Services/Software&Tools/Linux_SystemMonitoring&Watchdog&GPIO/BMC-Teutates_Specification_V1.21.pdf |
23 | ftp:///pub/Mainboard-OEM-Sales/Services/Software&Tools/Linux_SystemMonitoring&Watchdog&GPIO/Fujitsu_mainboards-1-Sensors_HowTo-en-US.pdf | 23 | ftp://ftp.ts.fujitsu.com/pub/Mainboard-OEM-Sales/Services/Software&Tools/Linux_SystemMonitoring&Watchdog&GPIO/Fujitsu_mainboards-1-Sensors_HowTo-en-US.pdf |
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index 730d84028260..d0203a115eff 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c | |||
@@ -491,7 +491,7 @@ struct it87_sio_data { | |||
491 | struct it87_data { | 491 | struct it87_data { |
492 | const struct attribute_group *groups[7]; | 492 | const struct attribute_group *groups[7]; |
493 | enum chips type; | 493 | enum chips type; |
494 | u16 features; | 494 | u32 features; |
495 | u8 peci_mask; | 495 | u8 peci_mask; |
496 | u8 old_peci_mask; | 496 | u8 old_peci_mask; |
497 | 497 | ||