diff options
author | Guenter Roeck <linux@roeck-us.net> | 2015-02-13 14:10:46 -0800 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2015-03-09 09:59:36 -0700 |
commit | e8433b42b60e799d55eb2476dc6cb3668c740063 (patch) | |
tree | 64ec0d38afa03703a0fdc79d89543e198f86a7af /drivers/hwmon | |
parent | a0c1424acb16326d9b741be8db7a3e776fc28b19 (diff) |
hwmon: (it87) No need to skip fan4 for IT8603
IT8603 only supports three fans, so it is not necessary to skip fan4.
Reviewed-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r-- | drivers/hwmon/it87.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index 691067bbe07c..ab12dc2eb896 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c @@ -1932,10 +1932,6 @@ static int __init it87_find(unsigned short *address, sio_data->skip_in |= (1 << 5); /* No VIN5 */ sio_data->skip_in |= (1 << 6); /* No VIN6 */ - /* no fan4 */ - sio_data->skip_pwm |= (1 << 3); - sio_data->skip_fan |= (1 << 3); - sio_data->internal |= (1 << 1); /* in7 is VSB */ sio_data->internal |= (1 << 3); /* in9 is AVCC */ |