2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-30 13:57:41 +00:00

remove LTC1710 from mkpatch - unlikely to be

needed on a PC


git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@1048 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Mark D. Studebaker
2001-03-31 01:40:53 +00:00
parent 3d93decf6a
commit 338d695ef9
4 changed files with 4 additions and 24 deletions

View File

@@ -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;

View File

@@ -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

View File

@@ -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

View File

@@ -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@ {
$_ = <INPUT>;
$_ = <INPUT>;
$_ = <INPUT> 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