Changeset 4133

Show
Ignore:
Timestamp:
09/02/06 09:49:35 (2 years ago)
Author:
khali
Message:

The adt7463 may not have in4 (#2119)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/CHANGES

    r4126 r4133  
    5656                   Print missing w83791d values 
    5757                   Add w83793 support (Yuan Mu) 
     58                   The adt7463 may not have in4 (#2119) 
    5859  Program sensors-detect: Add ServerWorks HT-1000 SMBus detection 
    5960                          Add ATI IXP200/300/400 SMBus detection 
  • lm-sensors/trunk/etc/sensors.conf.eg

    r4114 r4133  
    23932393 
    23942394# Voltage inputs 
     2395# Depending on the hardware setup, the ADT7463 may not have in4. 
    23952396   label in0   "V1.5"      # AGP on Intel S845WD1-E 
    23962397   label in1   "VCore" 
  • lm-sensors/trunk/prog/sensors/chips.c

    r4113 r4133  
    15621562  double cur, min, max; 
    15631563  int alarms, alarm_mask = 0, valid; 
    1564   int is85, is1027, is6d100; 
     1564  int is85, is1027, is7463, is6d100; 
    15651565 
    15661566  is85 = !strcmp(name->prefix,"lm85") 
     
    15691569  is1027 = !strcmp(name->prefix,"adm1027") 
    15701570           || !strcmp(name->prefix,"adt7463") ; 
     1571  is7463 = !strcmp(name->prefix, "adt7463"); 
    15711572  is6d100 = !strcmp(name->prefix,"emc6d100") ; 
    15721573 
     
    16501651      putchar( '\n' ); 
    16511652    } 
    1652   } else 
     1653  } else if (!is7463) 
    16531654    printf("ERROR: Can't get IN4 data!\n"); 
    16541655  free(label);