Changeset 2231

Show
Ignore:
Timestamp:
01/18/04 18:39:01 (5 years ago)
Author:
khali
Message:

Add support for asb100 and w83l785ts.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/mkpatch/Config.in

    r2229 r2231  
    1818    dep_tristate '  Analog Devices ADM1026' CONFIG_SENSORS_ADM1026 $CONFIG_I2C $CONFIG_I2C_PROC 
    1919    dep_tristate '  Analog Devices ADM9240 and compatibles' CONFIG_SENSORS_ADM9240 $CONFIG_I2C $CONFIG_I2C_PROC 
     20    dep_tristate '  Asus ASB100' CONFIG_SENSORS_ASB100 $CONFIG_I2C $CONFIG_I2C_PROC 
    2021    dep_tristate '  Dallas DS1621 and DS1625' CONFIG_SENSORS_DS1621 $CONFIG_I2C $CONFIG_I2C_PROC 
    2122    dep_tristate '  Fujitsu-Siemens Poseidon' CONFIG_SENSORS_FSCPOS $CONFIG_I2C $CONFIG_I2C_PROC 
     
    4243    dep_tristate '  VIA VT8231 Integrated Sensors' CONFIG_SENSORS_VT8231 $CONFIG_I2C $CONFIG_I2C_PROC $CONFIG_I2C_ISA 
    4344    dep_tristate '  Winbond W83781D, W83782D, W83783S, W83627HF, Asus AS99127F' CONFIG_SENSORS_W83781D $CONFIG_I2C $CONFIG_I2C_PROC 
     45    dep_tristate '  Winbond W83L785TS-S' CONFIG_SENSORS_W83L785TS $CONFIG_I2C $CONFIG_I2C_PROC 
    4446    bool 'Other I2C devices' CONFIG_SENSORS_OTHER  
    4547    if [ "$CONFIG_SENSORS_OTHER" = "y" ] ; then 
  • lm-sensors/trunk/mkpatch/FILES

    r2229 r2231  
    2323kernel/chips/adm1026.c          drivers/sensors/adm1026.c 
    2424kernel/chips/adm9240.c          drivers/sensors/adm9240.c 
     25kernel/chips/asb100.c           drivers/sensors/asb100.c 
    2526kernel/chips/bt869.c            drivers/sensors/bt869.c 
    2627kernel/chips/ddcmon.c           drivers/sensors/ddcmon.c 
     
    5455kernel/chips/vt8231.c           drivers/sensors/vt8231.c 
    5556kernel/chips/w83781d.c          drivers/sensors/w83781d.c 
     57kernel/chips/w83l785ts.c                drivers/sensors/w83l785ts.c 
    5658kernel/include/sensors_compat.h include/linux/sensors_compat.h 
    5759kernel/include/sensors_vid.h    include/linux/sensors_vid.h 
  • lm-sensors/trunk/mkpatch/mkpatch.pl

    r2229 r2231  
    100100           m@Analog Devices ADM1026@ or 
    101101           m@Analog Devices ADM9240 and compatibles@ or 
     102           m@Asus ASB100@ or 
    102103           m@Dallas DS1621 and DS1625@ or 
    103104           m@Fujitsu-Siemens Poseidon@ or 
     
    121122           m@Via VT82C686A/B@ or 
    122123           m@Winbond W83781D, W83782D, W83783S, W83627HF, AS99127F@ or 
     124           m@Winbond W83L785TS-S@ or 
    123125           m@EEprom \(DIMM\) reader@) { 
    124126      $_ = <INPUT>; 
     
    315317  http://www.lm-sensors.nu 
    316318 
     319Asus ASB100 
     320CONFIG_SENSORS_ASB100 
     321  If you say yes here you get support for the Asus ASB100 (aka 
     322  "Bach") sensor chip.  This can also be built as a module. 
     323 
     324  You will also need the latest user-space utilities: you can find 
     325  them in the lm_sensors package, which you can download at 
     326  http://www.lm-sensors.nu/ 
     327 
    317328Dallas DS1621 and DS1625 
    318329CONFIG_SENSORS_DS1621 
     
    581592  in the lm_sensors package, which you can download at  
    582593  http://www.lm-sensors.nu 
     594 
     595Winbond W83L785TS-S 
     596CONFIG_SENSORS_W83L785TS 
     597  If you say yes here you get support for the Winbond W83L785TS-S 
     598  sensor chip.  This can also be built as a module. 
     599 
     600  You will also need the latest user-space utilities: you can find 
     601  them in the lm_sensors package, which you can download at 
     602  http://www.lm-sensors.nu/ 
    583603 
    584604EEprom (DIMM) reader 
     
    866886obj-$(CONFIG_SENSORS_ADM1026)   += adm1026.o 
    867887obj-$(CONFIG_SENSORS_ADM9240)   += adm9240.o 
     888obj-$(CONFIG_SENSORS_ASB100)    += asb100.o 
    868889obj-$(CONFIG_SENSORS_BT869)     += bt869.o 
    869890obj-$(CONFIG_SENSORS_DDCMON)    += ddcmon.o 
     
    895916obj-$(CONFIG_SENSORS_VT8231)    += vt8231.o 
    896917obj-$(CONFIG_SENSORS_W83781D)   += w83781d.o 
     918obj-$(CONFIG_SENSORS_W83L785TS) += w83l785ts.o 
    897919 
    898920include $(TOPDIR)/Rules.make