2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-30 22:05:11 +00:00

Add a parameter to sensors_get_detected_chips(), to optionally let the

caller select which subset of chips it wants. This is slightly better
size-wise than letting all applications do the filtering by themselves.

This will change the way the command line parameters of "sensors" are
interpreted. Beforehand, the chips were always returned in the order
in which they were listed by the library. Also, each chip could be listed
only once. From now on, the chips will be listed in the order in which
they are passed on the command line, which I think makes more sense. A
side effect is that chips can be listed more than once, if that's what
the user asks for. Not very useful though.

This change makes it possible to make sensors_match_chip() internal
to the library. Filtering the list of chips returned by
sensors_get_detected_chips() was the last known external use for this
function.

This patch looks much bigger than it really is, but the largest part is
really only code reindentation.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4701 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2007-08-26 08:26:20 +00:00
parent ff4cfd53d5
commit 4d6bec8bb2
6 changed files with 76 additions and 70 deletions

View File

@@ -251,18 +251,18 @@ int do_the_real_work(int *error)
int cnt = 0;
*error = 0;
for (chip_nr = 0; (chip = sensors_get_detected_chips(&chip_nr));)
for(i = 0; i < chips_count; i++)
if (sensors_match_chip(chip, &chips[i])) {
if(do_sets) {
if (do_a_set(chip))
*error = 1;
} else
do_a_print(chip);
i = chips_count;
cnt++;
}
return(cnt);
for (i = 0; i < chips_count; i++) {
chip_nr = 0;
while ((chip = sensors_get_detected_chips(&chips[i], &chip_nr))) {
if (do_sets) {
if (do_a_set(chip))
*error = 1;
} else
do_a_print(chip);
cnt++;
}
}
return cnt;
}
/* returns 1 on error */