Changeset 5942
- Timestamp:
- 03/16/11 15:55:04 (14 months 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
r5941 r5942 15 15 sensors: Display 3 decimal places in raw output 16 16 Add support for intrusion detection (#2370) 17 If an attribute value is 0, display the value with its base unit, 18 not with the minumum supported unit 17 19 sensors-detect: Improve LM90 and W83L771 detection 18 20 Fix error seen if I2C bus numbers are not sequential -
lm-sensors/trunk/prog/sensors/chips.c
r5880 r5942 441 441 }; 442 442 struct scale_table *scale = prefix_scales; 443 444 if (abs_value == 0) { 445 *prefixstr = ""; 446 return; 447 } 443 448 444 449 while (scale->upper_bound && abs_value > scale->upper_bound) {
