Changeset 4702
- Timestamp:
- 08/26/07 10:26:51 (6 years ago)
- Location:
- lm-sensors/branches/lm-sensors-3.0.0/lib
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/lib/access.c
r4701 r4702 35 35 /* Compare two chips name descriptions, to see whether they could match. 36 36 Return 0 if it does not match, return 1 if it does match. */ 37 int sensors_match_chip(const sensors_chip_name *chip1,37 static int sensors_match_chip(const sensors_chip_name *chip1, 38 38 const sensors_chip_name *chip2) 39 39 { -
lm-sensors/branches/lm-sensors-3.0.0/lib/libsensors.3
r4701 r4702 36 36 .B int sensors_parse_chip_name(const char *orig_name, 37 37 \fBsensors_chip_name *res);\fP 38 .B int sensors_match_chip(const sensors_chip_name *chip1,39 \fBconst sensors_chip_name *chip2);\fP40 38 .B const char *sensors_get_adapter_name(int bus_nr); 41 39 .B char *sensors_get_label(const sensors_chip_name *name, int feature);\fP … … 68 66 .br 69 67 Parse a chip name to the internal representation. Return 0 on succes, <0 on error. 70 71 \fBint sensors_match_chip(const sensors_chip_name *chip1,72 const sensors_chip_name *chip2);\fP73 .br74 Compare two chips name descriptions, to see whether they could match. Return 0 if it does not match, return 1 if it does match.75 68 76 69 .B const char *sensors_get_adapter_name(int bus_nr); -
lm-sensors/branches/lm-sensors-3.0.0/lib/sensors.h
r4701 r4702 77 77 int sensors_snprintf_chip_name(char *str, size_t size, 78 78 const sensors_chip_name *chip); 79 80 /* Compare two chips name descriptions, to see whether they could match.81 Return 0 if it does not match, return 1 if it does match. */82 int sensors_match_chip(const sensors_chip_name *chip1,83 const sensors_chip_name *chip2);84 79 85 80 /* This function returns the adapter name of a bus,
