Changeset 960

Show
Ignore:
Timestamp:
12/16/00 21:41:47 (12 years ago)
Author:
mds
Message:

rename /proc entries temp and remote_temp to temp1 and temp2.

Location:
lm-sensors/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r955 r960  
    2424  Library: Add ds1621, mtp008 support 
    2525  Module adm1021: Add support for adm1021a / adm1023 
     26  Modules adm1021, thmc50: Rename /proc entries to temp[1-2] 
    2627  Module adm1025: Add support for remote temp; rename /proc entries to 
    2728                  in[0-5] and temp[1-2]; fix negative temp readings 
     
    4344                   sensors are found. 
    4445  Program sensors-detect: Add ds1621, mtp008 detection; 
    45                           add ServerWorks detection (no driver yet) 
     46                          add ServerWorks detection 
    4647 
    47482.5.4 (20001012) 
  • lm-sensors/trunk/kernel/chips/adm1021.c

    r933 r960  
    173173   when a new copy is allocated. */ 
    174174static 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, 
    176176         &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, 
    178178         &sensors_sysctl_real, NULL, &adm1021_remote_temp}, 
    179179        {ADM1021_SYSCTL_DIE_CODE, "die_code", NULL, 0, 0444, NULL, &sensors_proc_real, 
     
    185185 
    186186static 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, 
    188188         &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, 
    190190         &sensors_sysctl_real, NULL, &adm1021_remote_temp}, 
    191191        {ADM1021_SYSCTL_ALARMS, "alarms", NULL, 0, 0444, NULL, &sensors_proc_real, 
  • lm-sensors/trunk/kernel/chips/thmc50.c

    r933 r960  
    157157   when a new copy is allocated. */ 
    158158static 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, 
    160160         &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, 
    162162         &sensors_sysctl_real, NULL, &thmc50_remote_temp}, 
    163163        {THMC50_SYSCTL_INTER, "inter", NULL, 0, 0444, NULL, &sensors_proc_real,