summaryrefslogtreecommitdiff
path: root/lib/init.c
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2006-10-08 15:45:15 +0000
committerJean Delvare <khali@linux-fr.org>2006-10-08 15:45:15 +0000
commitbf96a279b8aa3357293078bfab269c8c9dbdabf4 (patch)
tree05f34a04a8d79aa5d3ca9dfe1e2d056e10bd1f8b /lib/init.c
parent4626fc46e6f7bc39ef37f12da51e9ae4b3ebe880 (diff)
downloadlm-sensors-git-bf96a279b8aa3357293078bfab269c8c9dbdabf4.tar.gz
libsensors: Probe for busses before chips. This makes more sense that way,
and may allow for cleanups later. git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@4198 7894878c-1315-0410-8ee3-d5d059ff63e0
Diffstat (limited to 'lib/init.c')
-rw-r--r--lib/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/init.c b/lib/init.c
index 863c020e..bbf4d768 100644
--- a/lib/init.c
+++ b/lib/init.c
@@ -43,10 +43,10 @@ int sensors_init(FILE *input)
int res;
sensors_cleanup();
if (sensors_init_sysfs()) {
- if ((res = sensors_read_sysfs_chips()) || (res = sensors_read_sysfs_bus()))
+ if ((res = sensors_read_sysfs_bus()) || (res = sensors_read_sysfs_chips()))
return res;
} else {
- if ((res = sensors_read_proc_chips()) || (res = sensors_read_proc_bus()))
+ if ((res = sensors_read_proc_bus()) || (res = sensors_read_proc_chips()))
return res;
}
if ((res = sensors_scanner_init(input)))