Changeset 4727
- Timestamp:
- 08/26/07 23:20:55 (6 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/sensors/chips.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r4660 r4727 9 9 Module i2c-piix4: Add ATI SB700 support (2.6 backport) 10 10 Module lm93: Fix an array overrun (2.6 backport) 11 Program sensors: Fix a memory leak on error (with -u) 11 12 Program sensors-detect: Don't probe i2c-isa as a regular i2c bus 12 13 Add Winbond W83L786NR/NG/R/G detection -
lm-sensors/trunk/prog/sensors/chips.c
r4722 r4727 6269 6269 continue; 6270 6270 } 6271 if (! valid) 6271 if (!valid) { 6272 free(label); 6272 6273 continue; 6274 } 6273 6275 if (data->mode & SENSORS_MODE_R) { 6274 if(sensors_get_feature(*name,data->number,&val)) {6276 if(sensors_get_feature(*name,data->number,&val)) 6275 6277 printf("ERROR: Can't get feature `%s' data!\n",data->name); 6276 continue; 6277 } 6278 if (data->mapping != SENSORS_NO_MAPPING) 6278 else if (data->mapping != SENSORS_NO_MAPPING) 6279 6279 printf(" %s: %.2f (%s)\n",label,val,data->name); 6280 6280 else
