Changeset 2229

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

Add support for MAX6650, LM83 and LM90.

Closes ticket #1510.

Files:

Legend:

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

    r1777 r2229  
    2525    dep_tristate '  HP Maxilife' CONFIG_SENSORS_MAXILIFE $CONFIG_I2C $CONFIG_I2C_PROC 
    2626    dep_tristate '  ITE 8705/8712, SiS950' CONFIG_SENSORS_IT87 $CONFIG_I2C $CONFIG_I2C_PROC 
     27    dep_tristate '  Maxim MAX6650, MAX6651' CONFIG_SENSORS_MAX6650 $CONFIG_I2C $CONFIG_I2C_PROC 
    2728    dep_tristate '  Myson MTP008' CONFIG_SENSORS_MTP008 $CONFIG_I2C $CONFIG_I2C_PROC 
    2829    dep_tristate '  National Semiconductor LM75 and compatibles' CONFIG_SENSORS_LM75 $CONFIG_I2C $CONFIG_I2C_PROC 
    2930    dep_tristate '  National Semiconductor LM78' CONFIG_SENSORS_LM78 $CONFIG_I2C $CONFIG_I2C_PROC 
    3031    dep_tristate '  National Semiconductor LM80' CONFIG_SENSORS_LM80 $CONFIG_I2C $CONFIG_I2C_PROC 
     32    dep_tristate '  National Semiconductor LM83' CONFIG_SENSORS_LM83 $CONFIG_I2C $CONFIG_I2C_PROC 
    3133    dep_tristate '  National Semiconductor LM85, Analog Devices ADM1027' CONFIG_SENSORS_LM85 $CONFIG_I2C $CONFIG_I2C_PROC 
    3234    dep_tristate '  National Semiconductor LM87' CONFIG_SENSORS_LM87 $CONFIG_I2C $CONFIG_I2C_PROC 
     35    dep_tristate '  National Semiconductor LM90, Analog Devices ADM1032' CONFIG_SENSORS_LM90 $CONFIG_I2C $CONFIG_I2C_PROC 
    3336    dep_tristate '  National Semiconductor LM92' CONFIG_SENSORS_LM92 $CONFIG_I2C $CONFIG_I2C_PROC 
    3437    dep_tristate '  Silicon Integrated Systems Corp. SiS5595' CONFIG_SENSORS_SIS5595 $CONFIG_I2C $CONFIG_I2C_PROC $CONFIG_I2C_ISA 
  • lm-sensors/trunk/mkpatch/FILES

    r2186 r2229  
    3636kernel/chips/lm78.c             drivers/sensors/lm78.c 
    3737kernel/chips/lm80.c             drivers/sensors/lm80.c 
     38kernel/chips/lm83.c             drivers/sensors/lm83.c 
    3839kernel/chips/lm85.c             drivers/sensors/lm85.c 
    3940kernel/chips/lm87.c             drivers/sensors/lm87.c 
     41kernel/chips/lm90.c             drivers/sensors/lm90.c 
    4042kernel/chips/lm92.c             drivers/sensors/lm92.c 
    4143kernel/chips/matorb.c           drivers/sensors/matorb.c 
     44kernel/chips/max6650.c          drivers/sensors/max6650.c 
    4245kernel/chips/maxilife.c         drivers/sensors/maxilife.c 
    4346kernel/chips/mtp008.c           drivers/sensors/mtp008.c 
  • lm-sensors/trunk/mkpatch/mkpatch.pl

    r2139 r2229  
    107107           m@HP Maxilife@ or 
    108108           m@ITE 8705, 8712, Sis950@ or 
     109           m@Maxim MAX6650, MAX6651@ or 
    109110           m@Myson MTP008@ or 
    110111           m@National Semiconductors LM75 and compatibles@ or 
    111112           m@National Semiconductors LM78@ or 
    112113           m@National Semiconductors LM80@ or 
    113            m@National Semiconductors LM85 and compatibles@ or 
     114           m@National Semiconductors LM83@ or 
     115           m@National Semiconductors LM85@ or 
    114116           m@National Semiconductors LM87@ or 
     117           m@National Semiconductors LM90@ or 
     118           m@National Semiconductors LM92@ or 
    115119           m@Silicon Integrated Systems Corp. SiS5595 Sensor@ or 
    116120           m@Texas Instruments THMC50 / Analog Devices ADM1022@ or 
     
    380384  http://www.lm-sensors.nu 
    381385 
     386Maxim MAX6650, MAX6651 
     387CONFIG_SENSORS_MAX6650 
     388  If you say yes here you get support for the Maxim MAX6650 and 
     389  MAX6651 sensor chips.  This can also be built as a module. 
     390 
     391  You will also need the latest user-space utilties: you can find them 
     392  in the lm_sensors package, which you can download at  
     393  http://www.lm-sensors.nu 
     394 
    382395Myson MTP008 
    383396CONFIG_SENSORS_MTP008 
     
    422435  http://www.lm-sensors.nu 
    423436 
     437National Semiconductor LM83 
     438CONFIG_SENSORS_LM83 
     439  If you say yes here you get support for the National Semiconductor 
     440  LM83 sensor chip.  This can also be built as a module. 
     441 
     442  You will also need the latest user-space utilities: you can find 
     443  them in the lm_sensors package, which you can download at 
     444  http://www.lm-sensors.nu/ 
     445 
    424446National Semiconductor LM85 
    425447CONFIG_SENSORS_LM85 
     
    443465  in the lm_sensors package, which you can download at  
    444466  http://www.lm-sensors.nu 
     467 
     468National Semiconductor LM90 
     469CONFIG_SENSORS_LM90 
     470  If you say yes here you get support for the National Semiconductor 
     471  LM90 and Analog Devices ADM1032 sensor chips.  This can also be 
     472  built as a module. 
     473 
     474  You will also need the latest user-space utilities: you can find 
     475  them in the lm_sensors package, which you can download at 
     476  http://www.lm-sensors.nu/ 
    445477 
    446478National Semiconductor LM92 
     
    846878obj-$(CONFIG_SENSORS_LM78)      += lm78.o 
    847879obj-$(CONFIG_SENSORS_LM80)      += lm80.o 
     880obj-$(CONFIG_SENSORS_LM83)      += lm83.o 
    848881obj-$(CONFIG_SENSORS_LM85)      += lm85.o 
    849882obj-$(CONFIG_SENSORS_LM87)      += lm87.o 
     883obj-$(CONFIG_SENSORS_LM90)      += lm90.o 
    850884obj-$(CONFIG_SENSORS_LM92)      += lm92.o 
     885obj-$(CONFIG_SENSORS_MAX6650)   += max6650.o 
    851886obj-$(CONFIG_SENSORS_MAXILIFE)  += maxilife.o 
    852887obj-$(CONFIG_SENSORS_MTP008)    += mtp008.o