Changeset 1048

Show
Ignore:
Timestamp:
03/31/01 03:40:53 (11 years ago)
Author:
mds
Message:

remove LTC1710 from mkpatch - unlikely to be

needed on a PC

Location:
lm-sensors/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r1038 r1048  
    2525  File doc/FAQ: Many updates and additions 
    2626  File doc/chips/via686a: Claim support for 686b. 
     27  File README.thinkpad: new 
    2728  File sensors.conf.eg: Adjust as99127f in5 (-12V) and temp2 calculations; 
    2829                        Add lm87, adm9240, ds1780, lm81 templates; 
     
    4445  Module w83781d: Don't reinitialize as99127f chip; this may cause fan/temp 
    4546                  reading changes 
    46   Program mkpatch.pl: Fix adm9240 typos, add more chips to Configure.help 
     47  Program mkpatch.pl: Fix adm9240 typos, add more chips to Configure.help, 
     48                      remove ltc1710 
    4749  Program sensord: Add -d (debug) and -p (pid-file) options 
    4850  Program sensors: Change reported version from 1.3 to the lm_sensors version; 
  • lm-sensors/trunk/mkpatch/Config.in

    r961 r1048  
    2828      dep_tristate '  DDC Monitor EDID EEPROM' CONFIG_SENSORS_DDCMON $CONFIG_SENSORS 
    2929      dep_tristate '  EEprom (DIMM) reader ' CONFIG_SENSORS_EEPROM $CONFIG_SENSORS 
    30       dep_tristate '  Linear Technologies LTC1710 ' CONFIG_SENSORS_LTC1710 $CONFIG_SENSORS 
    3130      dep_tristate '  Matrix-Orbital LCD Displays' CONFIG_SENSORS_MATORB $CONFIG_MATORB 
    3231    fi 
  • lm-sensors/trunk/mkpatch/FILES

    r962 r1048  
    2323kernel/chips/lm80.c             drivers/sensors/lm80.c 
    2424kernel/chips/lm87.c             drivers/sensors/lm87.c 
    25 kernel/chips/ltc1710.c          drivers/sensors/ltc1710.c 
    2625kernel/chips/matorb.c           drivers/sensors/matorb.c 
    2726kernel/chips/sis5595.c          drivers/sensors/sis5595.c 
  • lm-sensors/trunk/mkpatch/mkpatch.pl

    r1014 r1048  
    9191           m@Silicon Integrated Systems Corp. SiS5595@ or 
    9292           m@Winbond W83781D, W83782D and W83783S@ or 
    93            m@EEprom \(DIMM\) reader@ or 
    94            m@Linear Technologies LTC1710@) { 
     93           m@EEprom \(DIMM\) reader@ { 
    9594      $_ = <INPUT>; 
    9695      $_ = <INPUT>; 
     
    347346  module which can be inserted and removed while the kernel is  
    348347  running. 
    349  
    350   You will also need the latest user-space utilties: you can find them 
    351   in the lm_sensors package, which you can download at  
    352   http://www.lm-sensors.nu 
    353  
    354 Linear Technologies LTC1710 
    355 CONFIG_SENSORS_LTC1710 
    356   If you say yes here you get support for Linear Technologies LTC1710 
    357   sensor chips. This can also be built as a module which can be  
    358   inserted and removed while the kernel is running. 
    359348 
    360349  You will also need the latest user-space utilties: you can find them 
     
    701690obj-$(CONFIG_SENSORS_LM80)      += lm80.o 
    702691obj-$(CONFIG_SENSORS_LM87)      += lm87.o 
    703 obj-$(CONFIG_SENSORS_LTC1710)   += ltc1710.o 
    704692obj-$(CONFIG_SENSORS_SIS5595)   += sis5595.o 
    705693obj-$(CONFIG_SENSORS_THMC50)    += thmc50.o 
     
    824812  ifeq ($(CONFIG_SENSORS_LM87),m) 
    825813    M_OBJS += lm87.o 
    826   endif 
    827 endif 
    828  
    829 ifeq ($(CONFIG_SENSORS_LTC1710),y) 
    830   L_OBJS += ltc1710.o 
    831 else 
    832   ifeq ($(CONFIG_SENSORS_LTC1710),m) 
    833     M_OBJS += ltc1710.o 
    834814  endif 
    835815endif