Changeset 2230

Show
Ignore:
Timestamp:
01/18/04 17:28:32 (9 years ago)
Author:
khali
Message:

Fix it87 hyst -> low. Closes tickets #1527 and #1528.

Location:
lm-sensors/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/doc/chips/it87

    r2201 r2230  
    204204          temp2            NONE            NONE      R     1 
    205205          temp3            NONE            NONE      R     1 
    206      temp_hyst1            temp            temp      RW    1 
    207      temp_over1            temp            temp      RW    1 
    208      temp_hyst2            temp            temp      RW    1 
    209      temp_over2            temp            temp      RW    1 
    210      temp_hyst3            temp            temp      RW    1 
    211      temp_over3            temp            temp      RW    1 
     206      temp1_low            temp            temp      RW    1 
     207     temp1_over            temp            temp      RW    1 
     208      temp2_low            temp            temp      RW    1 
     209     temp2_over            temp            temp      RW    1 
     210      temp3_low            temp            temp      RW    1 
     211     temp3_over            temp            temp      RW    1 
    212212            vid            NONE            NONE      R     2 
    213213       fan1_div            fan1            NONE      RW    0 
     
    249249       fan2_min                    SENSORS_IT87_FAN2_MIN            fan2:1 
    250250       fan3_min                    SENSORS_IT87_FAN3_MIN            fan3:1 
    251           temp1                       SENSORS_IT87_TEMP1            temp1:3 
    252           temp2                       SENSORS_IT87_TEMP2            temp2:3 
    253           temp3                       SENSORS_IT87_TEMP3            temp3:3 
    254      temp1_hyst                  SENSORS_IT87_TEMP1_HYST            temp1:2 
    255      temp1_over                  SENSORS_IT87_TEMP1_OVER            temp1:1 
    256      temp2_hyst                  SENSORS_IT87_TEMP2_HYST            temp2:2 
    257      temp2_over                  SENSORS_IT87_TEMP2_OVER            temp2:1 
    258      temp3_hyst                  SENSORS_IT87_TEMP3_HYST            temp3:2 
    259      temp3_over                  SENSORS_IT87_TEMP3_OVER            temp3:1 
     251          temp1                       SENSORS_IT87_TEMP1           temp1:3 
     252          temp2                       SENSORS_IT87_TEMP2           temp2:3 
     253          temp3                       SENSORS_IT87_TEMP3           temp3:3 
     254      temp1_low                   SENSORS_IT87_TEMP1_LOW           temp1:2 
     255     temp1_over                  SENSORS_IT87_TEMP1_HIGH           temp1:1 
     256      temp2_low                   SENSORS_IT87_TEMP2_LOW           temp2:2 
     257     temp2_over                  SENSORS_IT87_TEMP2_HIGH           temp2:1 
     258      temp3_low                   SENSORS_IT87_TEMP3_LOW           temp3:2 
     259     temp3_over                  SENSORS_IT87_TEMP3_HIGH           temp3:1 
    260260            vid                         SENSORS_IT87_VID             vid:1 
    261261       fan1_div                    SENSORS_IT87_FAN1_DIV         fan_div:1 
  • lm-sensors/trunk/etc/sensors.conf.eg

    r2211 r2230  
    14121412    label temp1       "M/B Temp" 
    14131413    set   temp1_over  40 
    1414     set   temp1_hyst  20 
     1414    set   temp1_low   15 
    14151415    label temp2       "CPU Temp" 
    14161416    set   temp2_over  45 
    1417     set   temp2_hyst  25 
     1417    set   temp2_low   15 
    14181418#   ignore temp3 
    14191419    label temp3       "Temp3" 
    14201420    set   temp3_over  45 
    1421     set   temp3_hyst  25 
     1421    set   temp3_low   15 
    14221422 
    14231423# The A7V8X-X has temperatures inverted, and needs a conversion for 
  • lm-sensors/trunk/lib/chips.c

    r2210 r2230  
    37583758    { SENSORS_IT87_TEMP3, "temp3", NOMAP, NOMAP, 
    37593759                         R, IT87_SYSCTL_TEMP3, VALUE(3), 1 }, 
    3760     { SENSORS_IT87_TEMP1_LOW, "temp1_hyst", SENSORS_IT87_TEMP1, 
     3760    { SENSORS_IT87_TEMP1_LOW, "temp1_low", SENSORS_IT87_TEMP1, 
    37613761                              SENSORS_IT87_TEMP1, RW, 
    37623762                              IT87_SYSCTL_TEMP1, VALUE(2), 1 }, 
    3763     { SENSORS_IT87_TEMP2_LOW, "temp2_hyst", SENSORS_IT87_TEMP2, 
     3763    { SENSORS_IT87_TEMP2_LOW, "temp2_low", SENSORS_IT87_TEMP2, 
    37643764                              SENSORS_IT87_TEMP2, RW, 
    37653765                              IT87_SYSCTL_TEMP2, VALUE(2), 1 }, 
    3766     { SENSORS_IT87_TEMP3_LOW, "temp3_hyst", SENSORS_IT87_TEMP3, 
     3766    { SENSORS_IT87_TEMP3_LOW, "temp3_low", SENSORS_IT87_TEMP3, 
    37673767                              SENSORS_IT87_TEMP3, RW, 
    37683768                              IT87_SYSCTL_TEMP3, VALUE(2), 1 },