diff options
author | Rudolf Marek <r.marek@assembler.cz> | 2014-04-04 12:01:35 -0400 |
---|---|---|
committer | Jean Delvare <jdelvare@suse.de> | 2014-04-04 12:01:35 -0400 |
commit | 7183ae8c203f81d1727cfaf430a9f6fa8a07c99c (patch) | |
tree | 0cf9b2684edd59220487e8a2b300120d84731a79 /drivers/hwmon | |
parent | 1de8b250f6b243f78b5d01db56d2435448797e08 (diff) |
hwmon: (it87) Fix IT8603E define name
Fix small typo in the define name for 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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index 70749fc15a4f..3c88ace9b4a4 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c | |||
@@ -147,7 +147,7 @@ static inline void superio_exit(void) | |||
147 | #define IT8772E_DEVID 0x8772 | 147 | #define IT8772E_DEVID 0x8772 |
148 | #define IT8782F_DEVID 0x8782 | 148 | #define IT8782F_DEVID 0x8782 |
149 | #define IT8783E_DEVID 0x8783 | 149 | #define IT8783E_DEVID 0x8783 |
150 | #define IT8306E_DEVID 0x8603 | 150 | #define IT8603E_DEVID 0x8603 |
151 | #define IT87_ACT_REG 0x30 | 151 | #define IT87_ACT_REG 0x30 |
152 | #define IT87_BASE_REG 0x60 | 152 | #define IT87_BASE_REG 0x60 |
153 | 153 | ||
@@ -1431,7 +1431,7 @@ static ssize_t show_label(struct device *dev, struct device_attribute *attr, | |||
1431 | static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0); | 1431 | static SENSOR_DEVICE_ATTR(in3_label, S_IRUGO, show_label, NULL, 0); |
1432 | static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1); | 1432 | static SENSOR_DEVICE_ATTR(in7_label, S_IRUGO, show_label, NULL, 1); |
1433 | static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2); | 1433 | static SENSOR_DEVICE_ATTR(in8_label, S_IRUGO, show_label, NULL, 2); |
1434 | /* special AVCC3 IT8306E in9 */ | 1434 | /* special AVCC3 IT8603E in9 */ |
1435 | static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 0); | 1435 | static SENSOR_DEVICE_ATTR(in9_label, S_IRUGO, show_label, NULL, 0); |
1436 | 1436 | ||
1437 | static ssize_t show_name(struct device *dev, struct device_attribute | 1437 | static ssize_t show_name(struct device *dev, struct device_attribute |
@@ -1766,7 +1766,7 @@ static int __init it87_find(unsigned short *address, | |||
1766 | case IT8783E_DEVID: | 1766 | case IT8783E_DEVID: |
1767 | sio_data->type = it8783; | 1767 | sio_data->type = it8783; |
1768 | break; | 1768 | break; |
1769 | case IT8306E_DEVID: | 1769 | case IT8603E_DEVID: |
1770 | sio_data->type = it8603; | 1770 | sio_data->type = it8603; |
1771 | break; | 1771 | break; |
1772 | case 0xffff: /* No device at all */ | 1772 | case 0xffff: /* No device at all */ |