From: gregkh@suse.de (Greg KH)
To: Linus Torvalds <torvalds@osdl.org>, Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org, lm-sensors@lm-sensors.org,
Jean Delvare <khali@linux-fr.org>
Subject: [lm-sensors] [GIT PATCH] I2C and hwmon fixes for 2.6.18-rc1
Date: Wed, 12 Jul 2006 23:23:59 +0000 [thread overview]
Message-ID: <20060712232359.GA22679@kroah.com> (raw)
Here are some i2c and hwmon fixes for 2.6.18-rc1. They fix quite a few
bugs and update the documentation.
They all have been in the -mm tree for a while.
Please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/i2c-2.6.git/
or from:
master.kernel.org:/pub/scm/linux/kernel/git/gregkh/i2c-2.6.git/
if it isn't synced up yet.
The full patch series will sent to the sensors mailing list, if anyone
wants to see them.
thanks,
greg k-h
Documentation/feature-removal-schedule.txt | 11 ++++++++++
Documentation/hwmon/abituguru | 32 ++++++++++++++++++++++++++--
Documentation/i2c/busses/i2c-sis96x | 4 ++--
MAINTAINERS | 14 +++++++++---
drivers/hwmon/abituguru.c | 21 +++++++++++++++++-
drivers/i2c/algos/i2c-algo-bit.c | 4 +---
drivers/i2c/algos/i2c-algo-ite.c | 4 +---
drivers/i2c/algos/i2c-algo-pca.c | 6 +++--
drivers/i2c/algos/i2c-algo-pcf.c | 8 ++++---
drivers/i2c/algos/i2c-algo-sibyte.c | 4 +---
drivers/i2c/busses/i2c-iop3xx.c | 17 +++++++++------
drivers/i2c/busses/i2c-iop3xx.h | 2 +-
drivers/i2c/busses/i2c-powermac.c | 4 +---
drivers/i2c/busses/scx200_acb.c | 20 +++++++++++-------
drivers/i2c/chips/pca9539.c | 12 ++++++-----
drivers/i2c/i2c-core.c | 4 ++--
include/linux/i2c.h | 2 ++
17 files changed, 118 insertions(+), 51 deletions(-)
---------------
Ben Gardner:
pca9539: Honor the force parameter
Charles Spirakis:
hwmon: New maintainer for w83791d
Hans de Goede:
hwmon: Fix for first generation Abit uGuru chips
hwmon: Documentation update for abituguru
Jean Delvare:
scx200_acb: Fix the block transactions
i2c-powermac: Fix master_xfer return value
i2c-ite: Plan for removal
i2c: New mailing list
Mark M. Hoffman:
i2c: Fix 'ignore' module parameter handling in i2c-core
i2c: Handle i2c_add_adapter failure in i2c algorithm drivers
Peter Milne:
i2c-iop3xx: Avoid addressing self
Thomas Andrews:
scx200_acb: Fix the state machine
Uwe Bugla:
i2c-algo-bit: Wipe out dead code
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <gregkh@suse.de>
To: Linus Torvalds <torvalds@osdl.org>, Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org, lm-sensors@lm-sensors.org,
Jean Delvare <khali@linux-fr.org>
Subject: [GIT PATCH] I2C and hwmon fixes for 2.6.18-rc1
Date: Wed, 12 Jul 2006 16:23:59 -0700 [thread overview]
Message-ID: <20060712232359.GA22679@kroah.com> (raw)
Here are some i2c and hwmon fixes for 2.6.18-rc1. They fix quite a few
bugs and update the documentation.
They all have been in the -mm tree for a while.
Please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/i2c-2.6.git/
or from:
master.kernel.org:/pub/scm/linux/kernel/git/gregkh/i2c-2.6.git/
if it isn't synced up yet.
The full patch series will sent to the sensors mailing list, if anyone
wants to see them.
thanks,
greg k-h
Documentation/feature-removal-schedule.txt | 11 ++++++++++
Documentation/hwmon/abituguru | 32 ++++++++++++++++++++++++++--
Documentation/i2c/busses/i2c-sis96x | 4 ++--
MAINTAINERS | 14 +++++++++---
drivers/hwmon/abituguru.c | 21 +++++++++++++++++-
drivers/i2c/algos/i2c-algo-bit.c | 4 +---
drivers/i2c/algos/i2c-algo-ite.c | 4 +---
drivers/i2c/algos/i2c-algo-pca.c | 6 +++--
drivers/i2c/algos/i2c-algo-pcf.c | 8 ++++---
drivers/i2c/algos/i2c-algo-sibyte.c | 4 +---
drivers/i2c/busses/i2c-iop3xx.c | 17 +++++++++------
drivers/i2c/busses/i2c-iop3xx.h | 2 +-
drivers/i2c/busses/i2c-powermac.c | 4 +---
drivers/i2c/busses/scx200_acb.c | 20 +++++++++++-------
drivers/i2c/chips/pca9539.c | 12 ++++++-----
drivers/i2c/i2c-core.c | 4 ++--
include/linux/i2c.h | 2 ++
17 files changed, 118 insertions(+), 51 deletions(-)
---------------
Ben Gardner:
pca9539: Honor the force parameter
Charles Spirakis:
hwmon: New maintainer for w83791d
Hans de Goede:
hwmon: Fix for first generation Abit uGuru chips
hwmon: Documentation update for abituguru
Jean Delvare:
scx200_acb: Fix the block transactions
i2c-powermac: Fix master_xfer return value
i2c-ite: Plan for removal
i2c: New mailing list
Mark M. Hoffman:
i2c: Fix 'ignore' module parameter handling in i2c-core
i2c: Handle i2c_add_adapter failure in i2c algorithm drivers
Peter Milne:
i2c-iop3xx: Avoid addressing self
Thomas Andrews:
scx200_acb: Fix the state machine
Uwe Bugla:
i2c-algo-bit: Wipe out dead code
next reply other threads:[~2006-07-12 23:23 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-07-12 23:23 Greg KH [this message]
2006-07-12 23:23 ` [GIT PATCH] I2C and hwmon fixes for 2.6.18-rc1 Greg KH
2006-07-24 19:21 ` [lm-sensors] " Jean Delvare
2006-07-24 19:21 ` Jean Delvare
2006-07-24 19:38 ` [lm-sensors] " Greg KH
2006-07-24 19:38 ` Greg KH
2006-07-26 20:01 ` [lm-sensors] " Jean Delvare
2006-07-26 20:01 ` Jean Delvare
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=20060712232359.GA22679@kroah.com \
--to=gregkh@suse.de \
--cc=akpm@osdl.org \
--cc=khali@linux-fr.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lm-sensors@lm-sensors.org \
--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 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.