Changeset 3695

Show
Ignore:
Timestamp:
09/10/02 02:34:27 (11 years ago)
Author:
mds
Message:

add mkpatch support for i2c-pport and i2c-pcf-epp.

Location:
i2c/trunk/mkpatch
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • i2c/trunk/mkpatch/Config.in

    r3694 r3695  
    1414      dep_tristate '  ELV adapter' CONFIG_I2C_ELV $CONFIG_I2C_ALGOBIT 
    1515      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 
    1617      if [ "$CONFIG_ARCH_SA1100" = "y" ]; then 
    1718         dep_tristate 'SA1100 I2C Adapter' CONFIG_I2C_FRODO $CONFIG_I2C_ALGOBIT 
     
    2223   if [ "$CONFIG_I2C_ALGOPCF" != "n" ]; then 
    2324      dep_tristate '  Elektor ISA card' CONFIG_I2C_ELEKTOR $CONFIG_I2C_ALGOPCF 
     25      dep_tristate '  PCF on EPP port' CONFIG_I2C_PCFEPP $CONFIG_I2C_ALGOPCF 
    2426   fi 
    2527 
  • i2c/trunk/mkpatch/FILES

    r3694 r3695  
    99kernel/i2c-elv.c                drivers/i2c/i2c-elv.c 
    1010kernel/i2c-frodo.c              drivers/i2c/i2c-frodo.c 
     11kernel/i2c-pcf-epp.c            drivers/i2c/i2c-pcf-epp.c 
    1112kernel/i2c-philips-par.c        drivers/i2c/i2c-philips-par.c 
     13kernel/i2c-pport.c              drivers/i2c/i2c-pport.c 
    1214kernel/i2c-proc.c               drivers/i2c/i2c-proc.c 
    1315kernel/i2c-rpx.c                drivers/i2c/i2c-rpx.c 
     
    2729doc/functionality               Documentation/i2c/functionality 
    2830doc/i2c-old-porting             Documentation/i2c/i2c-old-porting 
     31doc/i2c-pport                   Documentation/i2c/i2c-pport 
    2932doc/i2c-protocol                Documentation/i2c/i2c-protocol 
    3033doc/i2c-velleman                Documentation/i2c/i2c-velleman 
  • i2c/trunk/mkpatch/mkpatch.pl

    r3694 r3695  
    234234  The module will be called i2c-velleman.o. 
    235235 
     236Basic I2C on Parallel Port adapter 
     237CONFIG_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 
    236246I2C PCF 8584 interfaces 
    237247CONFIG_I2C_ALGOPCF 
     
    254264  <file:Documentation/modules.txt>. 
    255265  The module will be called i2c-elektor.o. 
     266 
     267PCF on the EPP Parallel Port 
     268CONFIG_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. 
    256275 
    257276Motorola 8xx I2C algorithm 
     
    536555obj-$(CONFIG_I2C_ELV)           += i2c-elv.o 
    537556obj-$(CONFIG_I2C_VELLEMAN)      += i2c-velleman.o 
     557obj-$(CONFIG_I2C_PPORT)         += i2c-pport.o 
    538558obj-$(CONFIG_I2C_ALGOPCF)       += i2c-algo-pcf.o 
    539559obj-$(CONFIG_I2C_ELEKTOR)       += i2c-elektor.o 
     560obj-$(CONFIG_I2C_PCFEPP)        += i2c-pcf-epp.o 
    540561obj-$(CONFIG_I2C_PROC)          += i2c-proc.o 
    541562obj-$(CONFIG_I2C_ALGO8XX)       += i2c-algo-8xx.o