aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorRudolf Marek <r.marek@assembler.cz>2014-04-04 12:01:35 -0400
committerJean Delvare <jdelvare@suse.de>2014-04-04 12:01:35 -0400
commit574e9bd8fa44d8c6d90a46d97d1a75257a89b424 (patch)
tree104472c88d75e6ba073bc18f36a3844f972957fc /drivers/hwmon
parent7183ae8c203f81d1727cfaf430a9f6fa8a07c99c (diff)
hwmon: (it87) Add support for IT8623E
Add support for the IT8623E found on Asus motherboards. It has same hardware monitoring block as IT8603E. Signed-off-by: Rudolf Marek <r.marek@assembler.cz> Signed-off-by: Jean Delvare <jdelvare@suse.de>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/it87.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c
index 3c88ace9b4a4..a327fd3402a7 100644
--- a/drivers/hwmon/it87.c
+++ b/drivers/hwmon/it87.c
@@ -11,6 +11,7 @@
11 * similar parts. The other devices are supported by different drivers. 11 * similar parts. The other devices are supported by different drivers.
12 * 12 *
13 * Supports: IT8603E Super I/O chip w/LPC interface 13 * Supports: IT8603E Super I/O chip w/LPC interface
14 * IT8623E Super I/O chip w/LPC interface
14 * IT8705F Super I/O chip w/LPC interface 15 * IT8705F Super I/O chip w/LPC interface
15 * IT8712F Super I/O chip w/LPC interface 16 * IT8712F Super I/O chip w/LPC interface
16 * IT8716F Super I/O chip w/LPC interface 17 * IT8716F Super I/O chip w/LPC interface
@@ -148,6 +149,7 @@ static inline void superio_exit(void)
148#define IT8782F_DEVID 0x8782 149#define IT8782F_DEVID 0x8782
149#define IT8783E_DEVID 0x8783 150#define IT8783E_DEVID 0x8783
150#define IT8603E_DEVID 0x8603 151#define IT8603E_DEVID 0x8603
152#define IT8623E_DEVID 0x8623
151#define IT87_ACT_REG 0x30 153#define IT87_ACT_REG 0x30
152#define IT87_BASE_REG 0x60 154#define IT87_BASE_REG 0x60
153 155
@@ -1767,6 +1769,7 @@ static int __init it87_find(unsigned short *address,
1767 sio_data->type = it8783; 1769 sio_data->type = it8783;
1768 break; 1770 break;
1769 case IT8603E_DEVID: 1771 case IT8603E_DEVID:
1772 case IT8623E_DEVID:
1770 sio_data->type = it8603; 1773 sio_data->type = it8603;
1771 break; 1774 break;
1772 case 0xffff: /* No device at all */ 1775 case 0xffff: /* No device at all */