Changeset 5356

Show
Ignore:
Timestamp:
10/07/08 22:52:01 (5 years ago)
Author:
khali
Message:

Add user-space support for the IT8720F (handled exactly the same as
the IT8718F.)

Location:
lm-sensors/trunk
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r5353 r5356  
    44SVN-HEAD 
    55  Library: Avoid namespace pollution 
     6           Add support for the IT8720F chip 
    67  Module i2c-i801: Remove verbose debugging messages (2.6 backport) 
    78                   Properly report bus arbitration lost (2.6 backport) 
     
    910  Program pwmconfig: Fix MINSTOP and MINSTART test functions (#2340) 
    1011                     Change default for MINTEMP from 0 to 20 degrees C 
     12  Program sensord: Add it8720 support 
    1113  Program sensors: Recognize it87 thermal sensor type 4 as thermistor 
     14                   Add it8720 support 
    1215  Program sensors-detect: Add VIA VT1212 support 
    1316                          Add SMSC EMC2700LPC support 
  • lm-sensors/trunk/lib/chips.c

    r5130 r5356  
    64446444 { SENSORS_IT8716_PREFIX, it87_features }, 
    64456445 { SENSORS_IT8718_PREFIX, it87_features }, 
     6446 { SENSORS_IT8720_PREFIX, it87_features }, 
    64466447 { SENSORS_FSCPOS_PREFIX, fscpos_features }, 
    64476448 { SENSORS_FSCSCY_PREFIX, fscscy_features }, 
  • lm-sensors/trunk/lib/chips.h

    r4995 r5356  
    16031603#define SENSORS_IT8716_PREFIX "it8716" 
    16041604#define SENSORS_IT8718_PREFIX "it8718" 
     1605#define SENSORS_IT8720_PREFIX "it8720" 
    16051606 
    16061607#define SENSORS_IT87_IN0 1 /* R */ 
  • lm-sensors/trunk/prog/sensord/chips.c

    r5285 r5356  
    619619static const char *it87_names[] = { 
    620620  SENSORS_IT87_PREFIX, SENSORS_IT8712_PREFIX, 
    621   SENSORS_IT8716_PREFIX, SENSORS_IT8718_PREFIX, NULL 
     621  SENSORS_IT8716_PREFIX, SENSORS_IT8718_PREFIX, SENSORS_IT8720_PREFIX, NULL 
    622622}; 
    623623 
  • lm-sensors/trunk/prog/sensors/main.c

    r5130 r5356  
    385385        { "it8716", print_it87 }, 
    386386        { "it8718", print_it87 }, 
     387        { "it8720", print_it87 }, 
    387388        { "fscpos", print_fscpos }, 
    388389        { "fscscy", print_fscscy },