From: greg@kroah.com (Greg KH)
To: torvalds@transmeta.com
Cc: linux-kernel@vger.kernel.org, sensors@Stimpy.netroedge.com
Subject: [BK PATCH] i2c driver changes for 2.5.67 - take 2
Date: Thu, 19 May 2005 06:23:53 +0000 [thread overview]
Message-ID: <20030411234018.GF4539@kroah.com> (raw)
In-Reply-To: <20030409223117.GA2812@kroah.com>
Hi,
Here are some i2c driver changes for 2.5.67, again. These include a
number of compile fixes, and a build fix due to my previous patches.
Also a patch to help out the i2c based video drivers is in here, and two
new i2c drivers have been added.
Please pull from: bk://kernel.bkbits.net/gregkh/linux/i2c-2.5
thanks,
greg k-h
drivers/i2c/Kconfig | 11
drivers/i2c/Makefile | 1
drivers/i2c/busses/Kconfig | 26 +
drivers/i2c/busses/Makefile | 1
drivers/i2c/busses/i2c-viapro.c | 504 ++++++++++++++++++++++++++++++
drivers/i2c/chips/Kconfig | 5
drivers/i2c/chips/via686a.c | 551 ++++++++++++++++++---------------
drivers/i2c/chips/w83781d.c | 6
drivers/i2c/i2c-adap-ite.c | 4
drivers/i2c/i2c-dev.c | 97 ++---
drivers/i2c/i2c-frodo.c | 4
drivers/i2c/i2c-keywest.c | 666 ++++++++++++++++++++++++++++++++++++++++
drivers/i2c/i2c-keywest.h | 111 ++++++
drivers/i2c/scx200_i2c.c | 6
include/linux/i2c-dev.h | 6
include/linux/i2c.h | 13
16 files changed, 1696 insertions(+), 316 deletions(-)
-----
<azarah@gentoo.org>:
o i2c: remove compiler warning in w83781d sensor driver
o i2c: Fix w83781d sensor to use Milli-Volt for in_* in sysfs
<j.dittmer@portrix.net>:
o i2c: convert via686a i2c driver to sysfs
<schlicht@uni-mannheim.de>:
o i2c: fix compilation error for various i2c-devices
Gerd Knorr <kraxel@bytesex.org>:
o i2c: add i2c_clientname()
Greg Kroah-Hartman <greg@kroah.com>:
o i2c: clean up i2c-dev.c's formatting, DEBUG, and ioctl mess
o i2c: fix up compile error in scx200_i2c driver
o i2c: fix up via686a.c driver based on previous i2c api changes
o i2c: fix up CONFIG_I2C_SENSOR configuration logic
Luca Tettamanti <kronos@kronoz.cjb.net>:
o i2c: Add i2c-viapro.c driver
Paul Mackerras <paulus@samba.org>:
o i2c: Add driver for powermac keywest i2c interface
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <greg@kroah.com>
To: torvalds@transmeta.com
Cc: linux-kernel@vger.kernel.org, sensors@Stimpy.netroedge.com
Subject: [BK PATCH] i2c driver changes for 2.5.67 - take 2
Date: Fri, 11 Apr 2003 16:40:18 -0700 [thread overview]
Message-ID: <20030411234018.GF4539@kroah.com> (raw)
Hi,
Here are some i2c driver changes for 2.5.67, again. These include a
number of compile fixes, and a build fix due to my previous patches.
Also a patch to help out the i2c based video drivers is in here, and two
new i2c drivers have been added.
Please pull from: bk://kernel.bkbits.net/gregkh/linux/i2c-2.5
thanks,
greg k-h
drivers/i2c/Kconfig | 11
drivers/i2c/Makefile | 1
drivers/i2c/busses/Kconfig | 26 +
drivers/i2c/busses/Makefile | 1
drivers/i2c/busses/i2c-viapro.c | 504 ++++++++++++++++++++++++++++++
drivers/i2c/chips/Kconfig | 5
drivers/i2c/chips/via686a.c | 551 ++++++++++++++++++---------------
drivers/i2c/chips/w83781d.c | 6
drivers/i2c/i2c-adap-ite.c | 4
drivers/i2c/i2c-dev.c | 97 ++---
drivers/i2c/i2c-frodo.c | 4
drivers/i2c/i2c-keywest.c | 666 ++++++++++++++++++++++++++++++++++++++++
drivers/i2c/i2c-keywest.h | 111 ++++++
drivers/i2c/scx200_i2c.c | 6
include/linux/i2c-dev.h | 6
include/linux/i2c.h | 13
16 files changed, 1696 insertions(+), 316 deletions(-)
-----
<azarah@gentoo.org>:
o i2c: remove compiler warning in w83781d sensor driver
o i2c: Fix w83781d sensor to use Milli-Volt for in_* in sysfs
<j.dittmer@portrix.net>:
o i2c: convert via686a i2c driver to sysfs
<schlicht@uni-mannheim.de>:
o i2c: fix compilation error for various i2c-devices
Gerd Knorr <kraxel@bytesex.org>:
o i2c: add i2c_clientname()
Greg Kroah-Hartman <greg@kroah.com>:
o i2c: clean up i2c-dev.c's formatting, DEBUG, and ioctl mess
o i2c: fix up compile error in scx200_i2c driver
o i2c: fix up via686a.c driver based on previous i2c api changes
o i2c: fix up CONFIG_I2C_SENSOR configuration logic
Luca Tettamanti <kronos@kronoz.cjb.net>:
o i2c: Add i2c-viapro.c driver
Paul Mackerras <paulus@samba.org>:
o i2c: Add driver for powermac keywest i2c interface
next parent reply other threads:[~2005-05-19 6:23 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-04-11 23:40 Greg KH [this message]
2005-05-19 6:23 ` [BK PATCH] i2c driver changes for 2.5.67 - take 2 Greg KH
2003-04-11 23:46 ` Greg KH
2005-05-19 6:23 ` Greg KH
-- strict thread matches above, loose matches on Subject: below --
2003-04-09 22:31 [BK PATCH] i2c driver changes for 2.5.67 Greg KH
2005-05-19 6:23 ` Greg KH
2003-04-09 22:31 ` [PATCH] " Greg KH
2005-05-19 6:23 ` Greg KH
2003-04-09 22:31 ` Greg KH
2005-05-19 6:23 ` Greg KH
2003-04-09 22:31 ` Greg KH
2005-05-19 6:23 ` Greg KH
2003-04-09 22:31 ` Greg KH
2005-05-19 6:23 ` Greg KH
2003-04-09 22:31 ` Greg KH
2005-05-19 6:23 ` Greg KH
2003-04-09 22:31 ` Greg KH
2005-05-19 6:23 ` Greg KH
2003-04-09 22:31 ` Greg KH
2005-05-19 6:23 ` Greg KH
2003-04-09 22:31 ` Greg KH
2005-05-19 6:23 ` 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=20030411234018.GF4539@kroah.com \
--to=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sensors@Stimpy.netroedge.com \
--cc=torvalds@transmeta.com \
/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.