Changeset 5147
- Timestamp:
- 03/16/08 18:30:20 (4 months ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (2 diffs)
- lm-sensors/trunk/lib/sysfs.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r5139 r5147 3 3 4 4 SVN-HEAD 5 Library: Don't choke on unrecognized devices, part 2 5 6 Program sensors-detect: New device ID for the SMSC SCH5317 6 7 … … 8 9 Library: Fix fschrc and fschmd support 9 10 Fix sysfs presence detection 10 Don't choke on unrecognized devices (#2087)11 Don't choke on unrecognized devices, part 1 (#2087) 11 12 Fix lm93 vid2 access (#2295) 12 13 No in1 on w83783s lm-sensors/trunk/lib/sysfs.c
r5086 r5147 183 183 dlist_for_each_data(clsdevs, clsdev, struct sysfs_class_device) { 184 184 struct sysfs_device *dev; 185 if (!(dev = sysfs_get_classdev_device(clsdev))) { 186 ret = -SENSORS_ERR_PROC; 187 goto exit; 188 } 185 if (!(dev = sysfs_get_classdev_device(clsdev))) 186 continue; 189 187 if ((ret = sensors_read_one_sysfs_chip(dev))) 190 188 goto exit;
