All of lore.kernel.org
 help / color / mirror / Atom feed
* [BK PATCH] Yet more i2c driver changes for 2.5.69
  2005-05-19  6:23 ` Greg KH
@ 2005-05-19  6:23 ` Greg KH
  -1 siblings, 0 replies; 20+ messages in thread
From: Greg KH @ 2003-05-19 23:11 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, sensors

Hi,

Here are yet more minor i2c fixups for 2.5.69.  They add another i2c bus
driver, and fix some bugs in the existing drivers (i287 and i2c-dev.)

Please pull from:  bk://kernel.bkbits.net/gregkh/linux/i2c-2.5

thanks,

greg k-h

 drivers/i2c/busses/Kconfig      |   25 ++
 drivers/i2c/busses/Makefile     |    1 
 drivers/i2c/busses/i2c-piix4.c  |    4 
 drivers/i2c/busses/i2c-sis96x.c |  376 ++++++++++++++++++++++++++++++++++++++++
 drivers/i2c/chips/it87.c        |    1 
 drivers/i2c/i2c-dev.c           |  228 +++++++++++++++++-------
 drivers/pci/quirks.c            |   80 ++++++++
 include/linux/i2c-id.h          |    2 
 include/linux/pci_ids.h         |    3 
 9 files changed, 648 insertions(+), 72 deletions(-)
-----

<mhoffman:lightlink.com>:
  o i2c: Add SiS96x I2C/SMBus driver

<warp:mercury.d2dc.net>:
  o I2C: And yet another it87 patch

Greg Kroah-Hartman:
  o i2c: fix up i2c-dev driver based on previous core changes
  o i2c: piix4 driver: turn common error message to a debug level and rename the sysfs driver name


^ permalink raw reply	[flat|nested] 20+ messages in thread
* [BK PATCH] Yet more i2c driver changes for 2.5.65
@ 2005-05-19  6:23 ` Greg KH
  0 siblings, 0 replies; 20+ messages in thread
From: Greg KH @ 2003-03-23  8:07 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, sensors

Hi,

Here are some more i2c driver changes, they include the stuff I sent out
Friday, but haven't ended up in your tree yet, and 4 patches to fix up
some drivers in the rest of the kernel tree that were broken by my
previous i2c changes.

Please pull from:  bk://kernel.bkbits.net/gregkh/linux/i2c-2.5

I'll post just the new patches to the mailing lists.

thanks,

greg k-h

 drivers/acorn/char/i2c.c                  |    4 
 drivers/i2c/busses/i2c-ali15x3.c          |    8 -
 drivers/i2c/busses/i2c-amd756.c           |    6 -
 drivers/i2c/busses/i2c-amd8111.c          |    4 
 drivers/i2c/busses/i2c-i801.c             |    8 -
 drivers/i2c/busses/i2c-isa.c              |    4 
 drivers/i2c/busses/i2c-piix4.c            |    8 -
 drivers/i2c/chips/adm1021.c               |   21 +--
 drivers/i2c/chips/lm75.c                  |   14 +-
 drivers/i2c/i2c-algo-bit.c                |   13 +-
 drivers/i2c/i2c-algo-pcf.c                |   19 +--
 drivers/i2c/i2c-core.c                    |   99 ++++++++--------
 drivers/i2c/i2c-dev.c                     |   21 +--
 drivers/i2c/i2c-elektor.c                 |   10 +
 drivers/i2c/i2c-elv.c                     |    6 -
 drivers/i2c/i2c-philips-par.c             |    4 
 drivers/i2c/i2c-proc.c                    |  180 +++++++-----------------------
 drivers/i2c/i2c-velleman.c                |    4 
 drivers/i2c/scx200_acb.c                  |   32 ++---
 drivers/ieee1394/pcilynx.c                |    4 
 drivers/media/video/adv7175.c             |   22 ++-
 drivers/media/video/bt819.c               |   33 +++--
 drivers/media/video/bt856.c               |   27 ++--
 drivers/media/video/bttv-if.c             |   22 ++-
 drivers/media/video/msp3400.c             |   32 ++---
 drivers/media/video/saa5249.c             |   13 +-
 drivers/media/video/saa7110.c             |   19 +--
 drivers/media/video/saa7111.c             |   21 ++-
 drivers/media/video/saa7134/saa7134-i2c.c |   10 +
 drivers/media/video/saa7185.c             |   19 +--
 drivers/media/video/tda7432.c             |   16 +-
 drivers/media/video/tda9875.c             |   16 +-
 drivers/media/video/tda9887.c             |   14 +-
 drivers/media/video/tuner-3036.c          |    6 -
 drivers/media/video/tuner.c               |   29 ++--
 drivers/media/video/tvaudio.c             |   44 +++----
 drivers/video/matrox/i2c-matroxfb.c       |   11 +
 include/linux/i2c.h                       |   33 +++--
 38 files changed, 424 insertions(+), 432 deletions(-)
------


Greg Kroah-Hartman <greg@kroah.com>:
  o i2c: fix up drivers/video/matrox/i2c-matroxfb.c due to previous i2c changes
  o i2c: fix up drivers/ieee1394/pcilynx.c due to previous i2c changes
  o i2c: fix up drivers/acorn/char/i2c.c due to previous i2c changes
  o i2c: fix up drivers/media/video/* due to previous i2c changes
  o i2c: ugh, clean up lindent mess in i2c-proc.c::i2c_detect()
  o i2c: fix up the chip driver names to play nice with sysfs
  o i2c: actually register the i2c client device with the driver core
  o i2c: Removed the name variable from i2c_client as the dev one should be used instead
  o i2c: remove the data field from struct i2c_client
  o i2c: add struct device to i2c_client structure
  o i2c: remove *data from i2c_adapter, as dev->data should be used instead
  o i2c: remove i2c_adapter->name and use dev->name instead

Petr Vandrovec <vandrove@vc.cvut.cz>:
  o Fix kobject_get oopses triggered by i2c in 2.5.65-bk


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2005-05-19  6:23 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-19 23:11 [BK PATCH] Yet more i2c driver changes for 2.5.69 Greg KH
2005-05-19  6:23 ` Greg KH
2003-05-19 23:12 ` [PATCH] " Greg KH
2005-05-19  6:23   ` Greg KH
2003-05-19 23:12   ` Greg KH
2005-05-19  6:23     ` Greg KH
2003-05-19 23:12     ` Greg KH
2005-05-19  6:23       ` Greg KH
2003-05-19 23:12       ` Greg KH
2005-05-19  6:23         ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2003-03-23  8:07 [BK PATCH] Yet more i2c driver changes for 2.5.65 Greg KH
2005-05-19  6:23 ` Greg KH
2003-03-23  8:14 ` [PATCH] " Greg KH
2005-05-19  6:23   ` Greg KH
2003-03-23  8:14   ` Greg KH
2005-05-19  6:23     ` Greg KH
2003-03-23  8:14     ` Greg KH
2005-05-19  6:23       ` Greg KH
2003-03-23  8:15       ` Greg KH
2005-05-19  6:23         ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.