Changeset 5052

Show
Ignore:
Timestamp:
12/01/07 11:41:36 (1 year ago)
Author:
khali
Message:

sensors: Hide spurious errors on missing adm1026 inputs.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/CHANGES

    r5049 r5052  
    1717                     Give the fans some time to spin up 
    1818  Program sensors: Hide spurious errors on missing f71872f voltage inputs 
     19                   Hide spurious errors on missing adm1026 inputs 
    1920  Program sensors-detect: Add Texas Instruments TMP401 detection 
    2021                          Mention the f75375s driver 
  • lm-sensors/trunk/prog/sensors/chips.c

    r5014 r5052  
    48504850               cur,min,max,(alarms&adm1026_alarms_in[i])?"ALARM":""); 
    48514851      } 
    4852     } else { 
     4852    } else if (i != 8 && i != 9) { /* in8 and in9 are mutually exclusive 
     4853                                      with temp3 */ 
    48534854      printf("ERROR: Can't get IN%d data!\n",i); 
    48544855    } 
     
    48984899        puts( (alarms&adm1026_alarms_temp[i])?"   ALARM":"" ); 
    48994900      } 
    4900     } else { 
     4901    } else if (i != 2) { /* temp3 is mutually exclusive with in8+in9 */ 
    49014902      printf("ERROR: Can't get TEMP%d data!\n",i+1); 
    49024903    }