Changeset 2441
- Timestamp:
- 04/16/04 22:56:53 (5 years ago)
- Files:
-
- lm-sensors/trunk/kernel/busses/Module.mk (modified) (2 diffs)
- lm-sensors/trunk/mkpatch/FILES (modified) (1 diff)
- lm-sensors/trunk/mkpatch/mkpatch.pl (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/kernel/busses/Module.mk
r2189 r2441 26 26 # These targets are NOT included in 'mkpatch' ... 27 27 KERNELBUSSESTARGETS := 28 KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-nforce2.o29 28 ifeq ($(shell if grep -q '^CONFIG_IPMI_HANDLER=' $(LINUX)/.config; then echo 1; fi),1) 30 29 KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-ipmb.o … … 56 55 ifneq ($(shell if grep -q '^CONFIG_I2C_ISA=y' $(LINUX)/.config; then echo 1; fi),1) 57 56 KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-isa.o 57 endif 58 ifneq ($(shell if grep -q '^CONFIG_I2C_NFORCE2=y' $(LINUX)/.config; then echo 1; fi),1) 59 KERNELBUSSESTARGETS += $(MODULE_DIR)/i2c-nforce2.o 58 60 endif 59 61 ifneq ($(shell if grep -q '^CONFIG_I2C_SIS5595=y' $(LINUX)/.config; then echo 1; fi),1) lm-sensors/trunk/mkpatch/FILES
r2424 r2441 7 7 kernel/busses/i2c-i810.c drivers/i2c/i2c-i810.c 8 8 kernel/busses/i2c-isa.c drivers/i2c/i2c-isa.c 9 kernel/busses/i2c-nforce2.c drivers/i2c/i2c-nforce2.c 9 10 kernel/busses/i2c-piix4.c drivers/i2c/i2c-piix4.c 10 11 kernel/busses/i2c-savage4.c drivers/i2c/i2c-savage4.c lm-sensors/trunk/mkpatch/mkpatch.pl
r2424 r2441 89 89 m@Intel I810/I815 based Mainboard@ or 90 90 m@Intel 82371AB PIIX4\(E\)@ or 91 m@Nvidia Nforce2@ or 91 92 m@Silicon Integrated Systems Corp. SiS5595 based Mainboard@ or 92 93 m@VIA Technologies, Inc. VT82C586B@ or … … 202 203 is running. 203 204 205 Nvidia Nforce2 based Mainboard 206 CONFIG_I2C_NFORCE2 207 If you say yes to this option, support will be included for the 208 Nvidia Nforce2 family of mainboard I2C interfaces. This can also be 209 built as a module which can be inserted and removed while the kernel 210 is running. 211 204 212 Silicon Integrated Systems Corp. SiS5595 based Mainboard 205 213 CONFIG_I2C_SIS5595 … … 852 860 dep_tristate ' Intel i810AA/AB/E and i815' CONFIG_I2C_I810 $CONFIG_I2C_ALGOBIT 853 861 dep_tristate ' Intel 82371AB PIIX4(E), 443MX, ServerWorks OSB4/CSB5, SMSC Victory66' CONFIG_I2C_PIIX4 $CONFIG_I2C 862 dep_tristate ' Nvidia Nforce2' CONFIG_I2C_NFORCE2 $CONFIG_I2C 854 863 dep_tristate ' SiS 5595' CONFIG_I2C_SIS5595 $CONFIG_I2C 855 864 dep_tristate ' SiS 630/730' CONFIG_I2C_SIS630 $CONFIG_I2C … … 967 976 obj-$(CONFIG_I2C_I810) += i2c-i810.o 968 977 obj-$(CONFIG_I2C_ISA) += i2c-isa.o 978 obj-$(CONFIG_I2C_NFORCE2) += i2c-nforce2.o 969 979 obj-$(CONFIG_I2C_PIIX4) += i2c-piix4.o 970 980 obj-$(CONFIG_I2C_SIS5595) += i2c-sis5595.o
