aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2017-02-08 17:05:56 -0500
committerGuenter Roeck <linux@roeck-us.net>2017-02-11 00:35:08 -0500
commitd66777caa57ffade6061782f3a4d4056f0b0c1ac (patch)
tree39ed6958143930e455ce3302b4fa13b8f515639f
parent82dbe987b70042b340f851bdc969a971081e5f02 (diff)
hwmon: (it87) Fix pwm4 detection for IT8620 and IT8628
pwm4 is enabled if bit 2 of GPIO control register 4 is disabled, not when it is enabled. Since the check is for the skip condition, it is reversed. This applies to both IT8620 and IT8628. Fixes: 36c4d98a7883d ("hwmon: (it87) Add support for all pwm channels ...") Signed-off-by: Guenter Roeck <linux@roeck-us.net>
-rw-r--r--drivers/hwmon/it87.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c
index 85918d8a747a..4f3fabcd470d 100644
--- a/drivers/hwmon/it87.c
+++ b/drivers/hwmon/it87.c
@@ -2614,7 +2614,7 @@ static int __init it87_find(int sioaddr, unsigned short *address,
2614 2614
2615 /* Check for pwm4 */ 2615 /* Check for pwm4 */
2616 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG); 2616 reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
2617 if (!(reg & BIT(2))) 2617 if (reg & BIT(2))
2618 sio_data->skip_pwm |= BIT(3); 2618 sio_data->skip_pwm |= BIT(3);
2619 2619
2620 /* Check for pwm2, fan2 */ 2620 /* Check for pwm2, fan2 */