From: Greg KH <gregkh@suse.de>
To: torvalds@osdl.org, akpm@osdl.org
Cc: linux-usb-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org
Subject: [BK PATCH] I2C patches for 2.6.12-rc1
Date: Thu, 31 Mar 2005 15:22:30 -0800 [thread overview]
Message-ID: <20050331232230.GA2614@kroah.com> (raw)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=unknown-8bit, Size: 4606 bytes --]
Hi,
Here is a I2C update for 2.6.12-rc1. It includes a lot of bugfixes and
documenation updates. It also has two new i2c drivers. All of these
patches have been in the past few -mm releases.
Please pull from:
bk://kernel.bkbits.net/gregkh/linux/i2c-2.6
Patches will be posted to linux-kernel and sensors as a follow-up thread
for those who want to see them.
thanks,
greg k-h
Documentation/i2c/i2c-parport | 156 ----------
Documentation/i2c/busses/i2c-ali1535 | 42 ++
Documentation/i2c/busses/i2c-ali1563 | 27 +
Documentation/i2c/busses/i2c-ali15x3 | 112 +++++++
Documentation/i2c/busses/i2c-amd756 | 25 +
Documentation/i2c/busses/i2c-amd8111 | 41 ++
Documentation/i2c/busses/i2c-i801 | 80 +++++
Documentation/i2c/busses/i2c-i810 | 46 +++
Documentation/i2c/busses/i2c-nforce2 | 41 ++
Documentation/i2c/busses/i2c-parport | 174 +++++++++++
Documentation/i2c/busses/i2c-parport-light | 11
Documentation/i2c/busses/i2c-pca-isa | 23 +
Documentation/i2c/busses/i2c-piix4 | 72 ++++
Documentation/i2c/busses/i2c-prosavage | 23 +
Documentation/i2c/busses/i2c-savage4 | 26 +
Documentation/i2c/busses/i2c-sis5595 | 59 ++++
Documentation/i2c/busses/i2c-sis630 | 49 +++
Documentation/i2c/busses/i2c-sis69x | 73 +++++
Documentation/i2c/busses/i2c-via | 34 ++
Documentation/i2c/busses/i2c-viapro | 47 +++
Documentation/i2c/busses/i2c-voodoo3 | 62 ++++
Documentation/i2c/busses/scx200_acb | 14
drivers/i2c/algos/i2c-algo-ite.c | 13
drivers/i2c/algos/i2c-algo-pcf.c | 44 ++-
drivers/i2c/algos/i2c-algo-sibyte.c | 13
drivers/i2c/busses/Kconfig | 38 +-
drivers/i2c/busses/i2c-elektor.c | 9
drivers/i2c/busses/i2c-ibm_iic.c | 4
drivers/i2c/busses/i2c-ite.c | 7
drivers/i2c/busses/i2c-mv64xxx.c | 2
drivers/i2c/busses/i2c-s3c2410.c | 15 -
drivers/i2c/busses/i2c-viapro.c | 17 -
drivers/i2c/chips/Kconfig | 25 +
drivers/i2c/chips/Makefile | 2
drivers/i2c/chips/adm1021.c | 14
drivers/i2c/chips/ds1337.c | 402 +++++++++++++++++++++++++++
drivers/i2c/chips/eeprom.c | 3
drivers/i2c/chips/it87.c | 10
drivers/i2c/chips/lm85.c | 104 +++++--
drivers/i2c/chips/lm87.c | 20 -
drivers/i2c/chips/lm90.c | 44 ++-
drivers/i2c/chips/lm92.c | 423 +++++++++++++++++++++++++++++
drivers/i2c/chips/m41t00.c | 1
drivers/i2c/chips/w83627hf.c | 5
drivers/i2c/chips/w83781d.c | 100 ------
drivers/i2c/i2c-core.c | 10
include/linux/i2c.h | 13
47 files changed, 2175 insertions(+), 400 deletions(-)
-----
<frank.beesley:aeroflex.com>:
o I2C: Clean up of i2c-elektor.c build
<grant_nospam:dodo.com.au>:
o I2C: Drop useless w83781d RT feature
o I2C: group Intel on I2C Hardware Bus support
Domen Puncer:
o i2c/i2c-elektor: remove interruptible_sleep_on_timeout() usage
o i2c/i2c-ite: remove interruptible_sleep_on_timeout() usage
Eric Brower:
o I2C: lost arbitration detection for PCF8584
James Chapman:
o i2c: add adt7461 chip support to lm90 driver
o i2c: new driver for ds1337 RTC
Jean Delvare:
o I2C: Fix indentation of lm87 driver
o I2C: Fix broken force parameter handling
o i2c: add adt7461 chip support to lm90 driver's Kconfig entry
o I2C: i2c-s3c2410 functionality and fixes
o I2C: Fix race condition in it87 driver
o I2C: Delete useless instruction in it87
o I2C: Fix Vaio EEPROM detection
o I2C: Recognize new revision of the ADT7463 chip
o I2C: Avoid repeated resets of i2c-viapro
o I2C: Kill outdated defines in i2c.h
o I2C: Fix some i2c algorithm initialization
o I2C: Skip broken detection step in it87
o I2C: Make master_xfer debug messages more useful
o I2C: Kill unused struct members in w83627hf driver
o I2C: Fix adm1021 alarms mask
o I2C: Cleanup adm1021 unused defines
o I2C: New lm92 chip driver
Mark A. Greer:
o i2c: i2c-mv64xxx - set adapter owner and class fields
o I2C: Fix breakage in m41t00 i2c rtc driver
Rafael Ávila de Espíndola:
o I2C: lsb in emc6d102 and adm1027
Rudolf Marek:
o I2C: busses documentation update 2 of 2
o I2C: busses documentation update 1 of 2
next reply other threads:[~2005-03-31 23:22 UTC|newest]
Thread overview: 79+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-03-31 23:22 Greg KH [this message]
2005-03-31 23:23 ` [PATCH] i2c/i2c-ite: remove interruptible_sleep_on_timeout() usage Greg KH
2005-03-31 23:23 ` [PATCH] i2c/i2c-elektor: " Greg KH
2005-03-31 23:23 ` [PATCH] I2C: New lm92 chip driver Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Cleanup adm1021 unused defines Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Fix adm1021 alarms mask Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Kill unused struct members in w83627hf driver Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Make master_xfer debug messages more useful Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Skip broken detection step in it87 Greg KH
2005-03-31 23:23 ` [PATCH] I2C: group Intel on I2C Hardware Bus support Greg KH
2005-03-31 23:23 ` [PATCH] i2c: new driver for ds1337 RTC Greg KH
2005-03-31 23:23 ` [PATCH] i2c: add adt7461 chip support to lm90 driver Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Clean up of i2c-elektor.c build Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Fix breakage in m41t00 i2c rtc driver Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Fix some i2c algorithm initialization Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Kill outdated defines in i2c.h Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Avoid repeated resets of i2c-viapro Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Recognize new revision of the ADT7463 chip Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Fix Vaio EEPROM detection Greg KH
2005-03-31 23:23 ` [PATCH] I2C: busses documentation update 1 of 2 Greg KH
2005-03-31 23:23 ` [PATCH] I2C: busses documentation update 2 " Greg KH
2005-03-31 23:23 ` [PATCH] I2C: lost arbitration detection for PCF8584 Greg KH
2005-03-31 23:23 ` [PATCH] I2C: lsb in emc6d102 and adm1027 Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Delete useless instruction in it87 Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Fix race condition in it87 driver Greg KH
2005-03-31 23:23 ` [PATCH] I2C: i2c-s3c2410 functionality and fixes Greg KH
2005-03-31 23:23 ` [PATCH] i2c: add adt7461 chip support to lm90 driver's Kconfig entry Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Fix broken force parameter handling Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Fix indentation of lm87 driver Greg KH
2005-03-31 23:23 ` [PATCH] I2C: Drop useless w83781d RT feature Greg KH
2005-03-31 23:23 ` [PATCH] i2c: i2c-mv64xxx - set adapter owner and class fields Greg KH
2005-04-07 9:45 ` [PATCH] i2c: new driver for ds1337 RTC Ladislav Michl
2005-04-07 9:59 ` Jean Delvare
2005-04-07 11:16 ` Ladislav Michl
2005-04-07 13:07 ` Jean Delvare
2005-04-07 14:28 ` Ladislav Michl
2005-04-07 21:18 ` Greg KH
2005-04-07 23:17 ` [PATCH] ds1337 1/4 Ladislav Michl
2005-04-07 23:36 ` Greg KH
2005-04-08 13:00 ` Ladislav Michl
2005-04-08 16:31 ` James Chapman
2005-05-02 20:41 ` Greg KH
2005-04-08 8:49 ` Jean Delvare
2005-04-07 23:18 ` [PATCH] ds1337 2/4 Ladislav Michl
2005-04-08 8:51 ` Jean Delvare
2005-04-08 13:02 ` Ladislav Michl
2005-05-02 20:41 ` Greg KH
2005-04-07 23:18 ` [PATCH] ds1337 3/4 Ladislav Michl
2005-04-08 10:08 ` Jean Delvare
2005-04-08 13:06 ` Ladislav Michl
2005-05-02 20:41 ` Greg KH
2005-05-04 6:13 ` [PATCH] ds1337 1/3 Ladislav Michl
2005-05-04 8:41 ` Jean Delvare
2005-05-04 6:13 ` [PATCH] ds1337 2/3 Ladislav Michl
2005-05-04 9:44 ` Jean Delvare
2005-05-04 6:14 ` [PATCH] ds1337 3/3 Ladislav Michl
2005-05-04 10:07 ` Jean Delvare
2005-05-10 12:08 ` [PATCH] ds1337 driver works also with ds1339 chip Ladislav Michl
2005-05-10 12:40 ` Jean Delvare
2005-05-10 12:48 ` Russell King
[not found] ` <1DTwF8-18P-00@press.kroah.org>
[not found] ` <20050508204021.627f9cd1.khali@linux-fr.org>
[not found] ` <427E6E21.60001@katalix.com>
[not found] ` <20050508222351.08bfe2e1.khali@linux-fr.org>
2005-05-10 12:18 ` [PATCH] ds1337: export ds1337_do_command Ladislav Michl
2005-05-10 12:51 ` Jean Delvare
2005-05-10 17:55 ` Greg KH
2005-05-10 18:36 ` Ladislav Michl
2005-05-10 20:30 ` Greg KH
2005-05-11 8:32 ` Ladislav Michl
2005-04-07 23:19 ` [PATCH] ds1337 4/4 Ladislav Michl
2005-04-08 11:08 ` Jean Delvare
2005-04-08 12:35 ` Ladislav Michl
2005-04-08 16:21 ` Jean Delvare
2005-04-08 17:44 ` James Chapman
2005-04-10 19:51 ` Ladislav Michl
2005-04-10 21:10 ` Jean Delvare
2005-04-12 18:10 ` James Chapman
2005-04-13 11:04 ` Ladislav Michl
2005-04-13 19:02 ` James Chapman
2005-04-13 19:48 ` Ladislav Michl
2005-04-07 21:29 ` [PATCH] i2c: new driver for ds1337 RTC Jean Delvare
2005-04-07 23:16 ` Ladislav Michl
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=20050331232230.GA2614@kroah.com \
--to=gregkh@suse.de \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb-devel@lists.sourceforge.net \
--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