Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1639699 > unrolled thread

[PATCH 4.9 003/103] hwmon: (it87) Fix pwm4 detection for IT8620 and IT8628

Started byGreg Kroah-Hartman <gregkh@linuxfoundation.org>
First post2017-05-11 17:20 +0200
Last post2017-05-11 17:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 4.9 003/103] hwmon: (it87) Fix pwm4 detection for IT8620 and IT8628 Greg Kroah-Hartman <gregkh@linuxfoundation.org> - 2017-05-11 17:20 +0200

#1639699 — [PATCH 4.9 003/103] hwmon: (it87) Fix pwm4 detection for IT8620 and IT8628

FromGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Date2017-05-11 17:20 +0200
Subject[PATCH 4.9 003/103] hwmon: (it87) Fix pwm4 detection for IT8620 and IT8628
Message-ID<tFY2L-81A-31@gated-at.bofh.it>
4.9-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Guenter Roeck <linux@roeck-us.net>

commit d66777caa57ffade6061782f3a4d4056f0b0c1ac upstream.

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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/hwmon/it87.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/hwmon/it87.c
+++ b/drivers/hwmon/it87.c
@@ -2600,7 +2600,7 @@ static int __init it87_find(int sioaddr,
 
 		/* Check for pwm4 */
 		reg = superio_inb(sioaddr, IT87_SIO_GPIO4_REG);
-		if (!(reg & BIT(2)))
+		if (reg & BIT(2))
 			sio_data->skip_pwm |= BIT(3);
 
 		/* Check for pwm2, fan2 */

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web