From 496856a115deefabfc1a2ef81784884604754ca2 Mon Sep 17 00:00:00 2001 From: Guenter Roeck Date: Mon, 26 Feb 2018 19:19:09 -0800 Subject: [PATCH] Fix scaling for IT8732F 3.3V channels report the wrong voltages on IT8732F since the scaling bit is not set. Signed-off-by: Guenter Roeck --- it87.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it87.c b/it87.c index ce908e3..410321b 100644 --- a/it87.c +++ b/it87.c @@ -466,7 +466,7 @@ static const struct it87_devices it87_devices[] = { .features = FEAT_NEWER_AUTOPWM | FEAT_16BIT_FANS | FEAT_TEMP_OLD_PECI | FEAT_TEMP_PECI | FEAT_10_9MV_ADC | FEAT_IN7_INTERNAL | FEAT_FOUR_FANS - | FEAT_FOUR_PWM | FEAT_FANCTL_ONOFF, + | FEAT_FOUR_PWM | FEAT_FANCTL_ONOFF | FEAT_SCALING, .num_temp_limit = 3, .num_temp_offset = 3, .num_temp_map = 3, -- 2.39.5