2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

Add necessary conversions for FSC chips.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@2247 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2004-01-26 21:50:42 +00:00
parent 47d8badc71
commit cfb191a884

View File

@@ -422,6 +422,7 @@ int sensors_write_proc(sensors_chip_name name, int feature, double value)
Common conversions are as follows:
fan%d_div -> fan_div%d
fan%d_min -> fan_min%d
fan%d_state -> fan_status%d
fan%d -> fan_input%d
in%d_max -> in_max%d
in%d_min -> in_min%d
@@ -432,6 +433,7 @@ int sensors_write_proc(sensors_chip_name name, int feature, double value)
temp%d_high -> temp_max%d
temp%d_min -> temp_min%d
temp%d_low -> temp_min%d
temp%d_state -> temp_status%d
temp%d -> temp_input%d
tcrit%d -> temp_crit%d
hyst%d -> temp_hyst%d
@@ -501,6 +503,11 @@ int getsysname(const sensors_chip_feature *feature, char *sysname, int *sysmag)
*sysmag = FANMAG;
return 0;
}
if(sscanf(name, "fan%d_stat%c%c", &num, &last, &check) == 2 && last == 'e') {
sprintf(sysname, "fan_status%d", num);
*sysmag = FANMAG;
return 0;
}
if(sscanf(name, "fan%d%c", &num, &check) == 1) {
sprintf(sysname, "fan_input%d", num);
*sysmag = FANMAG;
@@ -565,6 +572,11 @@ int getsysname(const sensors_chip_feature *feature, char *sysname, int *sysmag)
*sysmag = TEMPMAG;
return 0;
}
if(sscanf(name, "temp%d_stat%c%c", &num, &last, &check) == 2 && last == 'e') {
sprintf(sysname, "temp_status%d", num);
*sysmag = TEMPMAG;
return 0;
}
if(sscanf(name, "tcrit%d%c", &num, &check) == 1) {
sprintf(sysname, "temp_crit%d", num);
*sysmag = TEMPMAG;