On Wed, Feb 02, 2011 at 06:20:00PM -0800, dirk.brandewie@xxxxxxxxx wrote: > From: Dirk Brandewie <dirk.brandewie@xxxxxxxxx> > > This patch splits i2c-designware.c into a core library and associated > header file and two bus specific parts for platform bus and PCI bus. not a library, it is a driver card. > Signed-off-by: Dirk Brandewie <dirk.brandewie@xxxxxxxxx> > --- > drivers/i2c/busses/Kconfig | 15 +- > drivers/i2c/busses/Makefile | 5 +- > drivers/i2c/busses/i2c-designware-core.c | 563 +++++++++++++++++ > drivers/i2c/busses/i2c-designware-core.h | 194 ++++++ > drivers/i2c/busses/i2c-designware-pcidrv.c | 199 ++++++ > drivers/i2c/busses/i2c-designware-platdrv.c | 199 ++++++ > drivers/i2c/busses/i2c-designware.c | 884 --------------------------- > 7 files changed, 1171 insertions(+), 888 deletions(-) > create mode 100644 drivers/i2c/busses/i2c-designware-core.c > create mode 100644 drivers/i2c/busses/i2c-designware-core.h > create mode 100644 drivers/i2c/busses/i2c-designware-pcidrv.c > create mode 100644 drivers/i2c/busses/i2c-designware-platdrv.c > delete mode 100644 drivers/i2c/busses/i2c-designware.c what happens when you use 'rename' detection when submitting? > diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig > index 113505a..a815606 100644 > --- a/drivers/i2c/busses/Kconfig > +++ b/drivers/i2c/busses/Kconfig > @@ -347,15 +347,24 @@ config I2C_DAVINCI > devices such as DaVinci NIC. > For details please see http://www.ti.com/davinci > > -config I2C_DESIGNWARE > - tristate "Synopsys DesignWare" > +config I2C_DESIGNWARE_PLATFORM > + tristate "Synopsys DesignWare Platfrom" > depends on HAVE_CLK > help > If you say yes to this option, support will be included for the > Synopsys DesignWare I2C adapter. Only master mode is supported. > > This driver can also be built as a module. If so, the module > - will be called i2c-designware. > + will be called i2c-designware-platform. not so happy about change in module name. > +config I2C_DESIGNWARE_PCI > + tristate "Synopsys DesignWare PCI" > + help > + If you say yes to this option, support will be included for the > + Synopsys DesignWare I2C adapter. Only master mode is supported. > + > + This driver can also be built as a module. If so, the module > + will be called i2c-designware-pci. > > config I2C_GPIO > tristate "GPIO-based bitbanging I2C" snipped the rest, assuming the rest is just moves. -- Ben Dooks, ben@xxxxxxxxx, http://www.fluff.org/ben/ Large Hadron Colada: A large Pina Colada that makes the universe disappear. -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html