From: Guenter Roeck Date: Fri, 10 Mar 2017 17:06:17 +0000 (-0800) Subject: Fix feature mask for IT8792E (IT8733E) X-Git-Tag: v1.0~51 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b8bbc81f6966c1fef293f78945bda67500fe8bd3;p=groeck-it87 Fix feature mask for IT8792E (IT8733E) The chip features match those of IT8790E. Most important is the ADC resolution, which is 12 mV, not 10.9 mV. Signed-off-by: Guenter Roeck --- diff --git a/it87.c b/it87.c index 81ca3db..8a77ad7 100644 --- a/it87.c +++ b/it87.c @@ -431,11 +431,10 @@ static const struct it87_devices it87_devices[] = { [it8792] = { .name = "it8792", .suffix = "E", - .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS - | FEAT_TEMP_OFFSET | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI - | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL, + .features = FEAT_NEWER_AUTOPWM | FEAT_12MV_ADC | FEAT_16BIT_FANS + | FEAT_TEMP_OFFSET | FEAT_TEMP_PECI | FEAT_IN7_INTERNAL + | FEAT_PWM_FREQ2, .peci_mask = 0x07, - .old_peci_mask = 0x02, /* Actually reports PCH */ }, [it8603] = { .name = "it8603",