From: Jean Delvare Date: Mon, 15 Oct 2007 12:02:36 +0000 (+0200) Subject: hwmon/lm87: Disable VID when it should be X-Git-Tag: v2.6.22.11~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3c97cd833e15aa67cf24e6ac84a81ce02a0aca0;p=thirdparty%2Fkernel%2Fstable.git hwmon/lm87: Disable VID when it should be Already in Linus' tree: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=889af3d5d9586db795a06c619e416b4baee11da8 A stupid bit shifting bug caused the VID value to be always exported even when the hardware is configured for something different. Signed-off-by: Jean Delvare Signed-off-by: Mark M. Hoffman Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/hwmon/lm87.c b/drivers/hwmon/lm87.c index 8dbb2be1e81c7..112815387ff1d 100644 --- a/drivers/hwmon/lm87.c +++ b/drivers/hwmon/lm87.c @@ -145,7 +145,7 @@ static u8 LM87_REG_TEMP_LOW[3] = { 0x3A, 0x38, 0x2C }; #define CHAN_NO_FAN(nr) (1 << (nr)) #define CHAN_TEMP3 (1 << 2) #define CHAN_VCC_5V (1 << 3) -#define CHAN_NO_VID (1 << 8) +#define CHAN_NO_VID (1 << 7) /* * Functions declaration