Changeset 5175
- Timestamp:
- 04/11/08 22:41:31 (5 years ago)
- Location:
- lm-sensors/branches/lm-sensors-3.0.0
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
lib/access.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/CHANGES
r5169 r5175 5 5 libsensors: Use __func__ instead of __FUNCTION__ 6 6 Parse the configuration file in C locale 7 Late compute statements override early ones 7 8 sensors-detect: Add SMSC SCH5027D detection 8 9 Do not access I/O ports on PPC -
lm-sensors/branches/lm-sensors-3.0.0/lib/access.c
r5163 r5175 250 250 251 251 chip = NULL; 252 while ((chip = sensors_for_all_config_chips(name, chip))) 252 while (!expr && 253 (chip = sensors_for_all_config_chips(name, chip))) 253 254 for (i = 0; i < chip->computes_count; i++) { 254 255 if (!strcmp(feature->name, … … 301 302 302 303 chip = NULL; 303 while ((chip = sensors_for_all_config_chips(name, chip))) 304 while (!expr && 305 (chip = sensors_for_all_config_chips(name, chip))) 304 306 for (i = 0; i < chip->computes_count; i++) { 305 307 if (!strcmp(feature->name,
