aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hwmon/abituguru.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/hwmon/abituguru.c b/drivers/hwmon/abituguru.c
index ab80b418bd69..59122cc0a50a 100644
--- a/drivers/hwmon/abituguru.c
+++ b/drivers/hwmon/abituguru.c
@@ -529,9 +529,8 @@ abituguru_detect_no_bank2_sensors(struct abituguru_data *data)
529 -0x08 enable beep 529 -0x08 enable beep
530 -0x01 enable alarm 530 -0x01 enable alarm
531 All other bits should be 0, but on some motherboards 531 All other bits should be 0, but on some motherboards
532 0x40 (bit 6) is also high, at least for fan1 */ 532 0x40 (bit 6) is also high for some of the fans?? */
533 if ((!i && (data->bank2_settings[i][0] & ~0xC9)) || 533 if (data->bank2_settings[i][0] & ~0xC9) {
534 (i && (data->bank2_settings[i][0] & ~0x89))) {
535 ABIT_UGURU_DEBUG(2, " bank2 sensor %d does not seem " 534 ABIT_UGURU_DEBUG(2, " bank2 sensor %d does not seem "
536 "to be a fan sensor: settings[0] = %02X\n", 535 "to be a fan sensor: settings[0] = %02X\n",
537 i, (unsigned int)data->bank2_settings[i][0]); 536 i, (unsigned int)data->bank2_settings[i][0]);