Changeset 5052
- Timestamp:
- 12/01/07 11:41:36 (1 year ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/prog/sensors/chips.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r5049 r5052 17 17 Give the fans some time to spin up 18 18 Program sensors: Hide spurious errors on missing f71872f voltage inputs 19 Hide spurious errors on missing adm1026 inputs 19 20 Program sensors-detect: Add Texas Instruments TMP401 detection 20 21 Mention the f75375s driver lm-sensors/trunk/prog/sensors/chips.c
r5014 r5052 4850 4850 cur,min,max,(alarms&adm1026_alarms_in[i])?"ALARM":""); 4851 4851 } 4852 } else { 4852 } else if (i != 8 && i != 9) { /* in8 and in9 are mutually exclusive 4853 with temp3 */ 4853 4854 printf("ERROR: Can't get IN%d data!\n",i); 4854 4855 } … … 4898 4899 puts( (alarms&adm1026_alarms_temp[i])?" ALARM":"" ); 4899 4900 } 4900 } else {4901 } else if (i != 2) { /* temp3 is mutually exclusive with in8+in9 */ 4901 4902 printf("ERROR: Can't get TEMP%d data!\n",i+1); 4902 4903 }
