| 422 | | if (sscanf(the_feature->data.name, "in%d%c", &dummy, &check) == 1 |
| 423 | | || sscanf(the_feature->data.name, "fan%d%c", &dummy, &check) == 1 |
| 424 | | || sscanf(the_feature->data.name, "temp%d%c", &dummy, &check) == 1) |
| | 420 | if (the_feature->data.type == SENSORS_FEATURE_IN |
| | 421 | || the_feature->data.type == SENSORS_FEATURE_FAN |
| | 422 | || the_feature->data.type == SENSORS_FEATURE_TEMP) |
| 457 | | if (sscanf(the_feature->data.name, "in%d%c", &dummy, &check) == 1 |
| 458 | | || sscanf(the_feature->data.name, "fan%d%c", &dummy, &check) == 1 |
| 459 | | || sscanf(the_feature->data.name, "temp%d%c", &dummy, &check) == 1) |
| | 453 | if (the_feature->data.type == SENSORS_FEATURE_IN |
| | 454 | || the_feature->data.type == SENSORS_FEATURE_FAN |
| | 455 | || the_feature->data.type == SENSORS_FEATURE_TEMP) |