diff --git a/CHANGES b/CHANGES index 248cb4fb..3287f82a 100644 --- a/CHANGES +++ b/CHANGES @@ -24,6 +24,7 @@ ask CVS about it: Also, mkpatch is probably broken right now. File doc/FAQ: Many updates and additions File doc/chips/via686a: Claim support for 686b. + File README.thinkpad: new File sensors.conf.eg: Adjust as99127f in5 (-12V) and temp2 calculations; Add lm87, adm9240, ds1780, lm81 templates; Enhance help comments in file; @@ -43,7 +44,8 @@ ask CVS about it: Module via686a: Allow force=9191,address (for A7V/K7V boards) Module w83781d: Don't reinitialize as99127f chip; this may cause fan/temp reading changes - Program mkpatch.pl: Fix adm9240 typos, add more chips to Configure.help + Program mkpatch.pl: Fix adm9240 typos, add more chips to Configure.help, + remove ltc1710 Program sensord: Add -d (debug) and -p (pid-file) options Program sensors: Change reported version from 1.3 to the lm_sensors version; Fix swapped limit and hysteresis on 9240, 5595, 686a; diff --git a/mkpatch/Config.in b/mkpatch/Config.in index f7c38efe..6d0a782c 100644 --- a/mkpatch/Config.in +++ b/mkpatch/Config.in @@ -27,7 +27,6 @@ if [ "$CONFIG_I2C" = "m" -o "$CONFIG_I2C" = "y" ] ; then dep_tristate ' Brooktree BT869 Video Modulator' CONFIG_SENSORS_BT869 $CONFIG_SENSORS dep_tristate ' DDC Monitor EDID EEPROM' CONFIG_SENSORS_DDCMON $CONFIG_SENSORS dep_tristate ' EEprom (DIMM) reader ' CONFIG_SENSORS_EEPROM $CONFIG_SENSORS - dep_tristate ' Linear Technologies LTC1710 ' CONFIG_SENSORS_LTC1710 $CONFIG_SENSORS dep_tristate ' Matrix-Orbital LCD Displays' CONFIG_SENSORS_MATORB $CONFIG_MATORB fi fi diff --git a/mkpatch/FILES b/mkpatch/FILES index a2330181..50e3ce81 100644 --- a/mkpatch/FILES +++ b/mkpatch/FILES @@ -22,7 +22,6 @@ kernel/chips/lm75.c drivers/sensors/lm75.c kernel/chips/lm78.c drivers/sensors/lm78.c kernel/chips/lm80.c drivers/sensors/lm80.c kernel/chips/lm87.c drivers/sensors/lm87.c -kernel/chips/ltc1710.c drivers/sensors/ltc1710.c kernel/chips/matorb.c drivers/sensors/matorb.c kernel/chips/sis5595.c drivers/sensors/sis5595.c kernel/chips/thmc50.c drivers/sensors/thmc50.c diff --git a/mkpatch/mkpatch.pl b/mkpatch/mkpatch.pl index 3091adf9..c75eda2e 100755 --- a/mkpatch/mkpatch.pl +++ b/mkpatch/mkpatch.pl @@ -90,8 +90,7 @@ sub gen_Documentation_Configure_help m@National Semiconductors LM80@ or m@Silicon Integrated Systems Corp. SiS5595@ or m@Winbond W83781D, W83782D and W83783S@ or - m@EEprom \(DIMM\) reader@ or - m@Linear Technologies LTC1710@) { + m@EEprom \(DIMM\) reader@ { $_ = ; $_ = ; $_ = while not m@^\S@ and not eof(INPUT); @@ -351,16 +350,6 @@ CONFIG_SENSORS_EEPROM in the lm_sensors package, which you can download at http://www.lm-sensors.nu -Linear Technologies LTC1710 -CONFIG_SENSORS_LTC1710 - If you say yes here you get support for Linear Technologies LTC1710 - sensor chips. This can also be built as a module which can be - inserted and removed while the kernel is running. - - You will also need the latest user-space utilties: you can find them - in the lm_sensors package, which you can download at - http://www.lm-sensors.nu - EOF } print OUTPUT; @@ -700,7 +689,6 @@ obj-$(CONFIG_SENSORS_LM75) += lm75.o obj-$(CONFIG_SENSORS_LM78) += lm78.o obj-$(CONFIG_SENSORS_LM80) += lm80.o obj-$(CONFIG_SENSORS_LM87) += lm87.o -obj-$(CONFIG_SENSORS_LTC1710) += ltc1710.o obj-$(CONFIG_SENSORS_SIS5595) += sis5595.o obj-$(CONFIG_SENSORS_THMC50) += thmc50.o obj-$(CONFIG_SENSORS_VIA686A) += via686a.o @@ -826,14 +814,6 @@ else endif endif -ifeq ($(CONFIG_SENSORS_LTC1710),y) - L_OBJS += ltc1710.o -else - ifeq ($(CONFIG_SENSORS_LTC1710),m) - M_OBJS += ltc1710.o - endif -endif - ifeq ($(CONFIG_SENSORS_MATORB),y) L_OBJS += matorb.o else