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
Subject: [lm-sensors] [GIT PATCH] I2C and hwmon patches for 2.6.16-rc2
Date: Mon, 06 Feb 2006 20:18:27 +0000 [thread overview]
Message-ID: <20060206201827.GA29197@kroah.com> (raw)
In-Reply-To: <20051028210607.GA18845@kroah.com>
Here are some i2c and hwmon patches. They add a new hwmon driver and
fix a number of different bugs. All of these have been in tha last few
-mm releases.
Please pull from:
rsync://rsync.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 | 9
Documentation/hwmon/f71805f | 105 +++
Documentation/hwmon/it87 | 2
Documentation/hwmon/sysfs-interface | 18
Documentation/i2c/busses/i2c-sis69x | 73 --
Documentation/i2c/busses/i2c-sis96x | 73 ++
MAINTAINERS | 6
drivers/hwmon/Kconfig | 10
drivers/hwmon/Makefile | 1
drivers/hwmon/f71805f.c | 908 +++++++++++++++++++++++++++++
drivers/hwmon/it87.c | 8
drivers/hwmon/lm77.c | 8
drivers/hwmon/w83792d.c | 31
drivers/i2c/algos/i2c-algo-sibyte.c | 2
drivers/i2c/busses/Kconfig | 1
drivers/i2c/busses/i2c-i801.c | 2
drivers/i2c/busses/i2c-parport-light.c | 9
drivers/i2c/busses/i2c-parport.c | 7
drivers/i2c/busses/i2c-pxa.c | 2
drivers/i2c/i2c-core.c | 15
include/linux/i2c.h | 3
21 files changed, 1182 insertions(+), 111 deletions(-)
Eric Sesterhenn:
i2c: Use module_param in i2c-algo-sibyte
Jason Gaston:
i2c-i801: I2C patch for Intel ICH8
Jean Delvare:
I2C: Resurrect i2c_smbus_write_i2c_block_data.
hwmon: Fix negative temperature readings in lm77 driver
hwmon: Inline w83792d register access functions
hwmon: Add f71805f documentation
hwmon: Fix reboot on it87 driver load
hwmon: New f71805f driver
Rudolf Marek:
i2c: Rename i2c-sis96x documentation file
Tobias Klauser:
i2c: Use ARRAY_SIZE macro
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
Subject: [GIT PATCH] I2C and hwmon patches for 2.6.16-rc2
Date: Mon, 6 Feb 2006 12:18:27 -0800 [thread overview]
Message-ID: <20060206201827.GA29197@kroah.com> (raw)
Here are some i2c and hwmon patches. They add a new hwmon driver and
fix a number of different bugs. All of these have been in tha last few
-mm releases.
Please pull from:
rsync://rsync.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 | 9
Documentation/hwmon/f71805f | 105 +++
Documentation/hwmon/it87 | 2
Documentation/hwmon/sysfs-interface | 18
Documentation/i2c/busses/i2c-sis69x | 73 --
Documentation/i2c/busses/i2c-sis96x | 73 ++
MAINTAINERS | 6
drivers/hwmon/Kconfig | 10
drivers/hwmon/Makefile | 1
drivers/hwmon/f71805f.c | 908 +++++++++++++++++++++++++++++
drivers/hwmon/it87.c | 8
drivers/hwmon/lm77.c | 8
drivers/hwmon/w83792d.c | 31
drivers/i2c/algos/i2c-algo-sibyte.c | 2
drivers/i2c/busses/Kconfig | 1
drivers/i2c/busses/i2c-i801.c | 2
drivers/i2c/busses/i2c-parport-light.c | 9
drivers/i2c/busses/i2c-parport.c | 7
drivers/i2c/busses/i2c-pxa.c | 2
drivers/i2c/i2c-core.c | 15
include/linux/i2c.h | 3
21 files changed, 1182 insertions(+), 111 deletions(-)
Eric Sesterhenn:
i2c: Use module_param in i2c-algo-sibyte
Jason Gaston:
i2c-i801: I2C patch for Intel ICH8
Jean Delvare:
I2C: Resurrect i2c_smbus_write_i2c_block_data.
hwmon: Fix negative temperature readings in lm77 driver
hwmon: Inline w83792d register access functions
hwmon: Add f71805f documentation
hwmon: Fix reboot on it87 driver load
hwmon: New f71805f driver
Rudolf Marek:
i2c: Rename i2c-sis96x documentation file
Tobias Klauser:
i2c: Use ARRAY_SIZE macro
next prev parent reply other threads:[~2006-02-06 20:18 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-10-28 21:06 [GIT PATCH] I2C and hwmon patches for 2.6.14 Greg KH
2005-10-28 23:06 ` [lm-sensors] " Greg KH
2006-01-06 22:06 ` [lm-sensors] [GIT PATCH] I2C and hwmon patches for 2.6.15 Greg KH
2006-01-06 22:06 ` Greg KH
2006-01-08 15:38 ` [lm-sensors] " Jean Delvare
2006-01-08 15:38 ` Jean Delvare
2006-02-06 20:18 ` Greg KH [this message]
2006-02-06 20:18 ` [GIT PATCH] I2C and hwmon patches for 2.6.16-rc2 Greg KH
2006-02-14 6:47 ` [lm-sensors] [GIT PATCH] I2C and hwmon patches for 2.6.16-rc3 Greg KH
2006-02-14 6:47 ` Greg KH
2006-03-23 22:43 ` [lm-sensors] [GIT PATCH] I2C and hwmon patches for 2.6.16 Greg KH
2006-03-23 22:43 ` Greg KH
2006-03-24 9:01 ` [lm-sensors] " Jean Delvare
2006-03-24 9:01 ` Jean Delvare
2006-03-24 19:06 ` [lm-sensors] " Greg KH
2006-03-24 19:06 ` Greg KH
2006-06-22 18:26 ` [lm-sensors] [GIT PATCH] I2C and hwmon patches for 2.6.17 Greg KH
2006-06-22 18:26 ` 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=20060206201827.GA29197@kroah.com \
--to=gregkh@suse.de \
--cc=akpm@osdl.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.