Changeset 4367
- Timestamp:
- 04/09/07 20:07:07 (6 years ago)
- Location:
- lm-sensors/branches/lm-sensors-3.0.0
- Files:
-
- 4 modified
-
lib/access.c (modified) (1 diff)
-
lib/chips.c (modified) (1 diff)
-
lib/sysfs.c (modified) (1 diff)
-
prog/sensors/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/lib/access.c
r4366 r4367 599 599 submatches = matches[i].submatches; 600 600 for(i = 0; submatches[i].name != 0; i++) 601 if (!str ncmp(name + pmatch[3].rm_so, submatches[i].name, size_second))601 if (!strcmp(name + pmatch[3].rm_so, submatches[i].name)) 602 602 return submatches[i].type; 603 603 -
lm-sensors/branches/lm-sensors-3.0.0/lib/chips.c
r4359 r4367 6160 6160 { SENSORS_F71805F_PREFIX, f71805f_features }, 6161 6161 { SENSORS_F71872F_PREFIX, f71805f_features }, 6162 { SENSORS_ABITUGURU_PREFIX, abituguru_features },6163 { SENSORS_K8TEMP_PREFIX, k8temp_features },6162 // { SENSORS_ABITUGURU_PREFIX, abituguru_features }, 6163 // { SENSORS_K8TEMP_PREFIX, k8temp_features }, 6164 6164 { SENSORS_CORETEMP_PREFIX, coretemp_features }, 6165 6165 { SENSORS_DME1737_PREFIX, dme1737_features }, -
lm-sensors/branches/lm-sensors-3.0.0/lib/sysfs.c
r4359 r4367 97 97 98 98 if (pmatch[2].rm_so != -1) { 99 if (!strncmp(name + pmatch[2].rm_so, "_input", 100 pmatch[2].rm_eo - pmatch[2].rm_so)) { 99 if (!strcmp(name + pmatch[2].rm_so, "_input")) { 101 100 int last_match; 102 101 -
lm-sensors/branches/lm-sensors-3.0.0/prog/sensors/main.c
r4362 r4367 426 426 { "f71805f", print_f71805f }, 427 427 { "f71872f", print_f71805f }, 428 { "abituguru", print_abituguru },429 { "k8temp", print_k8temp },428 // { "abituguru", print_abituguru }, 429 // { "k8temp", print_k8temp }, 430 430 { "coretemp", print_coretemp }, 431 431 { "dme1737", print_dme1737 },
