public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: torvalds@osdl.org, akpm@osdl.org
Cc: linux-kernel@vger.kernel.org, sensors@Stimpy.netroedge.com
Subject: [BK PATCH] I2C update for 2.6.10-rc1
Date: Mon, 8 Nov 2004 21:22:29 -0800	[thread overview]
Message-ID: <20041109052229.GA5117@kroah.com> (raw)

Hi,

Here are some i2c driver fixes and updates for 2.6.10-rc1.  There are a
few new i2c sensor and adapter drivers in here, and a number of bug
fixes.  The structures that the chip drivers use to specify which
addresses they support has been shrunk, as a step toward moving them to
use the hotplug interfaces for autoloading.

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

Individual patches will follow, sent to the sensors and linux-kernel
lists.

thanks,

greg k-h

 drivers/i2c/busses/Kconfig            |   15 
 drivers/i2c/busses/Makefile           |    1 
 drivers/i2c/busses/i2c-ali1535.c      |    4 
 drivers/i2c/busses/i2c-amd756-s4882.c |  261 ++++++
 drivers/i2c/busses/i2c-amd756.c       |   12 
 drivers/i2c/busses/i2c-amd8111.c      |   12 
 drivers/i2c/busses/i2c-ibm_iic.c      |   16 
 drivers/i2c/busses/i2c-s3c2410.c      |   71 +
 drivers/i2c/busses/scx200_acb.c       |    4 
 drivers/i2c/busses/scx200_i2c.c       |    4 
 drivers/i2c/chips/Kconfig             |   28 
 drivers/i2c/chips/Makefile            |    2 
 drivers/i2c/chips/adm1021.c           |    9 
 drivers/i2c/chips/adm1025.c           |    4 
 drivers/i2c/chips/adm1031.c           |    4 
 drivers/i2c/chips/asb100.c            |    5 
 drivers/i2c/chips/ds1621.c            |    5 
 drivers/i2c/chips/eeprom.c            |    5 
 drivers/i2c/chips/fscher.c            |    2 
 drivers/i2c/chips/gl518sm.c           |    2 
 drivers/i2c/chips/it87.c              |   14 
 drivers/i2c/chips/lm63.c              |  571 ++++++++++++++
 drivers/i2c/chips/lm75.c              |    5 
 drivers/i2c/chips/lm77.c              |    4 
 drivers/i2c/chips/lm78.c              |    7 
 drivers/i2c/chips/lm80.c              |    5 
 drivers/i2c/chips/lm83.c              |    8 
 drivers/i2c/chips/lm85.c              |  451 ++++++++++-
 drivers/i2c/chips/lm87.c              |    4 
 drivers/i2c/chips/lm90.c              |    2 
 drivers/i2c/chips/max1619.c           |    8 
 drivers/i2c/chips/pc87360.c           | 1316 +++++++++++++++++++++++++++++++++-
 drivers/i2c/chips/pcf8574.c           |    6 
 drivers/i2c/chips/pcf8591.c           |    5 
 drivers/i2c/chips/rtc8564.c           |    3 
 drivers/i2c/chips/smsc47m1.c          |    8 
 drivers/i2c/chips/via686a.c           |    2 
 drivers/i2c/chips/w83627hf.c          |    2 
 drivers/i2c/chips/w83781d.c           |    6 
 drivers/i2c/chips/w83l785ts.c         |    2 
 drivers/i2c/i2c-core.c                |   73 -
 drivers/i2c/i2c-sensor-detect.c       |   91 --
 drivers/w1/dscore.c                   |    4 
 drivers/w1/w1.c                       |    4 
 drivers/w1/w1_family.c                |    5 
 drivers/w1/w1_int.c                   |    5 
 include/linux/i2c-sensor.h            |   36 
 47 files changed, 2752 insertions(+), 361 deletions(-)
-----

<arjan:infradead.org>:
  o I2C: remove dead code from i2c

<jthiessen:penguincomputing.com>:
  o I2C: fix lm85.c build warnings
  o I2C: lm85.c driver update

Adrian Bunk:
  o i2c/busses/ : make some code static
  o i2c it87.c: remove an unused function

Ben Dooks:
  o S3C2410 i2c updates
  o I2C: Fix compile of drivers/i2c/busses/i2c-s3c2410.c

Eugene Surovegin:
  o I2C: fix recently introduced race in IBM PPC4xx I2C driver

Evgeniy Polyakov:
  o w1/w1_int: replace schedule_timeout() with msleep_interruptible()
  o w1/dscore: replace schedule_timeout() with msleep_interruptible()
  o w1/w1: replace schedule_timeout() with msleep_interruptible()
  o w1/w1_family: replace schedule_timeout() with msleep_interruptible()

Greg Kroah-Hartman:
  o I2C: delete normal_i2c_range logic from sensors as there are no more users
  o I2C: moved from all sensor drivers from normal_i2c_range to normal_i2c
  o I2C: fix i2c_detect to allow NULL fields in adapter address structure
  o I2C: remove normal_isa_range from I2C sensor drivers, as it's not used
  o I2C: remove ignore_range from I2C sensor drivers, as it's not used
  o I2C: remove probe_range from I2C sensor drivers, as it's not used
  o W1: fix build warnings due to msleep changes
  o I2C: fix MODULE_PARAM warning in pc87360.c driver

Jean Delvare:
  o I2C: add Tyan S4882 driver
  o I2C: Check for unregistered adapter in i2c_del_adapter
  o I2C: New PC8736x chip driver
  o I2C: New LM63 chip driver


             reply	other threads:[~2004-11-09  5:22 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-11-09  5:22 Greg KH [this message]
2004-11-09  5:24 ` [PATCH] I2C update for 2.6.10-rc1 Greg KH
2004-11-09  5:24   ` Greg KH
2004-11-09  5:24     ` Greg KH
2004-11-09  5:24       ` Greg KH
2004-11-09  5:24         ` Greg KH
2004-11-09  5:24           ` Greg KH
2004-11-09  5:24             ` Greg KH
2004-11-09  5:24               ` Greg KH
2004-11-09  5:24                 ` Greg KH
2004-11-09  5:24                   ` Greg KH
2004-11-09  5:24                     ` Greg KH
2004-11-09  5:24                       ` Greg KH
2004-11-09  5:24                         ` Greg KH
2004-11-09  5:24                           ` Greg KH
2004-11-09  5:24                             ` Greg KH
2004-11-09  5:24                               ` Greg KH
2004-11-09  5:24                                 ` Greg KH
2004-11-09  5:24                                   ` Greg KH
2004-11-09  5:24                                     ` Greg KH
2004-11-09  5:24                                       ` Greg KH
2004-11-09  5:24                                         ` Greg KH
2004-11-09  5:24                                           ` Greg KH
2004-11-09  5:24                                             ` Greg KH
2004-11-09  5:24                                               ` Greg KH
2004-11-09 10:17                 ` Jean Delvare
2004-11-09 11:12                   ` Arjan van de Ven
2004-11-09 14:10                     ` Jean Delvare
2004-11-09  9:29 ` [BK PATCH] " Jean Delvare
2004-11-09 15:21   ` Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20041109052229.GA5117@kroah.com \
    --to=greg@kroah.com \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sensors@Stimpy.netroedge.com \
    --cc=torvalds@osdl.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox