Changeset 960
- Timestamp:
- 12/16/00 21:41:47 (12 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 3 modified
-
CHANGES (modified) (2 diffs)
-
kernel/chips/adm1021.c (modified) (2 diffs)
-
kernel/chips/thmc50.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r955 r960 24 24 Library: Add ds1621, mtp008 support 25 25 Module adm1021: Add support for adm1021a / adm1023 26 Modules adm1021, thmc50: Rename /proc entries to temp[1-2] 26 27 Module adm1025: Add support for remote temp; rename /proc entries to 27 28 in[0-5] and temp[1-2]; fix negative temp readings … … 43 44 sensors are found. 44 45 Program sensors-detect: Add ds1621, mtp008 detection; 45 add ServerWorks detection (no driver yet)46 add ServerWorks detection 46 47 47 48 2.5.4 (20001012) -
lm-sensors/trunk/kernel/chips/adm1021.c
r933 r960 173 173 when a new copy is allocated. */ 174 174 static ctl_table adm1021_dir_table_template[] = { 175 {ADM1021_SYSCTL_TEMP, "temp ", NULL, 0, 0644, NULL, &sensors_proc_real,175 {ADM1021_SYSCTL_TEMP, "temp1", NULL, 0, 0644, NULL, &sensors_proc_real, 176 176 &sensors_sysctl_real, NULL, &adm1021_temp}, 177 {ADM1021_SYSCTL_REMOTE_TEMP, " remote_temp", NULL, 0, 0644, NULL, &sensors_proc_real,177 {ADM1021_SYSCTL_REMOTE_TEMP, "temp2", NULL, 0, 0644, NULL, &sensors_proc_real, 178 178 &sensors_sysctl_real, NULL, &adm1021_remote_temp}, 179 179 {ADM1021_SYSCTL_DIE_CODE, "die_code", NULL, 0, 0444, NULL, &sensors_proc_real, … … 185 185 186 186 static ctl_table adm1021_max_dir_table_template[] = { 187 {ADM1021_SYSCTL_TEMP, "temp ", NULL, 0, 0644, NULL, &sensors_proc_real,187 {ADM1021_SYSCTL_TEMP, "temp1", NULL, 0, 0644, NULL, &sensors_proc_real, 188 188 &sensors_sysctl_real, NULL, &adm1021_temp}, 189 {ADM1021_SYSCTL_REMOTE_TEMP, " remote_temp", NULL, 0, 0644, NULL, &sensors_proc_real,189 {ADM1021_SYSCTL_REMOTE_TEMP, "temp2", NULL, 0, 0644, NULL, &sensors_proc_real, 190 190 &sensors_sysctl_real, NULL, &adm1021_remote_temp}, 191 191 {ADM1021_SYSCTL_ALARMS, "alarms", NULL, 0, 0444, NULL, &sensors_proc_real, -
lm-sensors/trunk/kernel/chips/thmc50.c
r933 r960 157 157 when a new copy is allocated. */ 158 158 static ctl_table thmc50_dir_table_template[] = { 159 {THMC50_SYSCTL_TEMP, "temp ", NULL, 0, 0644, NULL, &sensors_proc_real,159 {THMC50_SYSCTL_TEMP, "temp1", NULL, 0, 0644, NULL, &sensors_proc_real, 160 160 &sensors_sysctl_real, NULL, &thmc50_temp}, 161 {THMC50_SYSCTL_REMOTE_TEMP, " remote_temp", NULL, 0, 0644, NULL, &sensors_proc_real,161 {THMC50_SYSCTL_REMOTE_TEMP, "temp2", NULL, 0, 0644, NULL, &sensors_proc_real, 162 162 &sensors_sysctl_real, NULL, &thmc50_remote_temp}, 163 163 {THMC50_SYSCTL_INTER, "inter", NULL, 0, 0444, NULL, &sensors_proc_real,
