Changeset 4198
- Timestamp:
- 10/08/06 17:45:15 (7 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
lib/init.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r4197 r4198 4 4 SVN HEAD 5 5 Library: Add support for the pc87247 driver (fans only) 6 Probe for busses before chips 6 7 Module icspll: Delete. It was useless and dangerous. 7 8 Program sensord: Add pc87247 support (fans only) -
lm-sensors/trunk/lib/init.c
r3300 r4198 44 44 sensors_cleanup(); 45 45 if (sensors_init_sysfs()) { 46 if ((res = sensors_read_sysfs_ chips()) || (res = sensors_read_sysfs_bus()))46 if ((res = sensors_read_sysfs_bus()) || (res = sensors_read_sysfs_chips())) 47 47 return res; 48 48 } else { 49 if ((res = sensors_read_proc_ chips()) || (res = sensors_read_proc_bus()))49 if ((res = sensors_read_proc_bus()) || (res = sensors_read_proc_chips())) 50 50 return res; 51 51 }
