Changeset 1111
- Timestamp:
- 06/02/01 06:02:23 (12 years ago)
- Location:
- lm-sensors/trunk/mkpatch
- Files:
-
- 2 modified
-
FILES (modified) (1 diff)
-
mkpatch.pl (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/mkpatch/FILES
r1048 r1111 7 7 kernel/busses/i2c-piix4.c drivers/i2c/i2c-piix4.c 8 8 kernel/busses/i2c-sis5595.c drivers/i2c/i2c-sis5595.c 9 kernel/busses/i2c-tsunami.c drivers/i2c/i2c-tsunami.c 9 10 kernel/busses/i2c-via.c drivers/i2c/i2c-via.c 10 11 kernel/busses/i2c-viapro.c drivers/i2c/i2c-viapro.c -
lm-sensors/trunk/mkpatch/mkpatch.pl
r1099 r1111 187 187 is running. 188 188 189 DEC Tsunami 21272 190 CONFIG_I2C_TSUNAMI 191 If you say yes to this option, support will be included for the DEC 192 Tsunami chipset I2C adapter. Requires the Alpha architecture; 193 do not enable otherwise. This can also be built as a module which 194 can be inserted and removed while the kernel is running. 195 189 196 Pseudo ISA adapter (for hardware sensors modules) 190 197 CONFIG_I2C_ISA … … 635 642 dep_tristate ' Apple Hydra Mac I/O' CONFIG_I2C_HYDRA $CONFIG_I2C_ALGOBIT 636 643 tristate ' AMD 756' CONFIG_I2C_AMD756 644 dep_tristate ' DEC Tsunami I2C interface' CONFIG_I2C_TSUNAMI $CONFIG_I2C_ALGOBIT 637 645 tristate ' Intel 82801AA, 82801AB and 82801BA' CONFIG_I2C_I801 638 646 tristate ' Intel i810AA, i810AB and i815' CONFIG_I2C_I810 … … 899 907 obj-$(CONFIG_I2C_PIIX4) += i2c-piix4.o 900 908 obj-$(CONFIG_I2C_SIS5595) += i2c-sis5595.o 909 obj-$(CONFIG_I2C_TSUNAMI) += i2c-tsunami.o 901 910 obj-$(CONFIG_I2C_VIA) += i2c-via.o 902 911 obj-$(CONFIG_I2C_VIAPRO) += i2c-viapro.o … … 966 975 ifeq ($(CONFIG_I2C_SIS5595),m) 967 976 M_OBJS += i2c-sis5595.o 977 endif 978 endif 979 980 ifeq ($(CONFIG_I2C_TSUNAMI),y) 981 L_OBJS += i2c-tsunami.o 982 else 983 ifeq ($(CONFIG_I2C_TSUNAMI),m) 984 M_OBJS += i2c-tsunami.o 968 985 endif 969 986 endif … … 1054 1071 extern int i2c_sis5595_init(void); 1055 1072 #endif 1073 #ifdef CONFIG_I2C_TSUNAMI 1074 extern int i2c_tsunami_init(void); 1075 #endif 1056 1076 #ifdef CONFIG_I2C_VIA 1057 1077 extern int i2c_via_init(void); … … 1086 1106 #ifdef CONFIG_I2C_SIS5595 1087 1107 i2c_sis5595_init(); 1108 #endif 1109 #ifdef CONFIG_I2C_TSUNAMI 1110 i2c_tsunami_init(); 1088 1111 #endif 1089 1112 #ifdef CONFIG_I2C_VIA
