Changeset 3695
- Timestamp:
- 09/10/02 02:34:27 (11 years ago)
- Location:
- i2c/trunk/mkpatch
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/mkpatch/Config.in
r3694 r3695 14 14 dep_tristate ' ELV adapter' CONFIG_I2C_ELV $CONFIG_I2C_ALGOBIT 15 15 dep_tristate ' Velleman K9000 adapter' CONFIG_I2C_VELLEMAN $CONFIG_I2C_ALGOBIT 16 dep_tristate ' Basic I2C on Parallel Port' CONFIG_I2C_PPORT $CONFIG_I2C_ALGOBIT 16 17 if [ "$CONFIG_ARCH_SA1100" = "y" ]; then 17 18 dep_tristate 'SA1100 I2C Adapter' CONFIG_I2C_FRODO $CONFIG_I2C_ALGOBIT … … 22 23 if [ "$CONFIG_I2C_ALGOPCF" != "n" ]; then 23 24 dep_tristate ' Elektor ISA card' CONFIG_I2C_ELEKTOR $CONFIG_I2C_ALGOPCF 25 dep_tristate ' PCF on EPP port' CONFIG_I2C_PCFEPP $CONFIG_I2C_ALGOPCF 24 26 fi 25 27 -
i2c/trunk/mkpatch/FILES
r3694 r3695 9 9 kernel/i2c-elv.c drivers/i2c/i2c-elv.c 10 10 kernel/i2c-frodo.c drivers/i2c/i2c-frodo.c 11 kernel/i2c-pcf-epp.c drivers/i2c/i2c-pcf-epp.c 11 12 kernel/i2c-philips-par.c drivers/i2c/i2c-philips-par.c 13 kernel/i2c-pport.c drivers/i2c/i2c-pport.c 12 14 kernel/i2c-proc.c drivers/i2c/i2c-proc.c 13 15 kernel/i2c-rpx.c drivers/i2c/i2c-rpx.c … … 27 29 doc/functionality Documentation/i2c/functionality 28 30 doc/i2c-old-porting Documentation/i2c/i2c-old-porting 31 doc/i2c-pport Documentation/i2c/i2c-pport 29 32 doc/i2c-protocol Documentation/i2c/i2c-protocol 30 33 doc/i2c-velleman Documentation/i2c/i2c-velleman -
i2c/trunk/mkpatch/mkpatch.pl
r3694 r3695 234 234 The module will be called i2c-velleman.o. 235 235 236 Basic I2C on Parallel Port adapter 237 CONFIG_I2C_PPORT 238 This supports directly connecting I2C devices to the parallel port. 239 See <file:Documentation/i2c/i2c-pport> for more information. 240 241 This driver is also available as a module. If you want to compile 242 it as a module, say M here and read 243 <file:Documentation/modules.txt>. 244 The module will be called i2c-pport.o. 245 236 246 I2C PCF 8584 interfaces 237 247 CONFIG_I2C_ALGOPCF … … 254 264 <file:Documentation/modules.txt>. 255 265 The module will be called i2c-elektor.o. 266 267 PCF on the EPP Parallel Port 268 CONFIG_I2C_PCFEPP 269 This supports the PCF8584 connected to the parallel port. 270 271 This driver is also available as a module. If you want to compile 272 it as a module, say M here and read 273 <file:Documentation/modules.txt>. 274 The module will be called i2c-pcf-epp.o. 256 275 257 276 Motorola 8xx I2C algorithm … … 536 555 obj-$(CONFIG_I2C_ELV) += i2c-elv.o 537 556 obj-$(CONFIG_I2C_VELLEMAN) += i2c-velleman.o 557 obj-$(CONFIG_I2C_PPORT) += i2c-pport.o 538 558 obj-$(CONFIG_I2C_ALGOPCF) += i2c-algo-pcf.o 539 559 obj-$(CONFIG_I2C_ELEKTOR) += i2c-elektor.o 560 obj-$(CONFIG_I2C_PCFEPP) += i2c-pcf-epp.o 540 561 obj-$(CONFIG_I2C_PROC) += i2c-proc.o 541 562 obj-$(CONFIG_I2C_ALGO8XX) += i2c-algo-8xx.o
