* [PATCH] i2c-piix4: Add support for the Broadcom HT1100 chipset
@ 2009-03-24 2:43 Flavio Leitner
[not found] ` <20090324024326.GA22272-ljGZA5MgXf9g9hUCZPvPmw@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Flavio Leitner @ 2009-03-24 2:43 UTC (permalink / raw)
To: linux-i2c-u79uwXL29TY76Z2rM5mHXA; +Cc: Jean Delvare
Add support for the Broadcom HT1100 LD chipset
Signed-off-by: Flavio Leitner <fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
drivers/i2c/busses/i2c-piix4.c | 4 +++-
include/linux/pci_ids.h | 1 +
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c
index 761f9dd..64145b3 100644
--- a/drivers/i2c/busses/i2c-piix4.c
+++ b/drivers/i2c/busses/i2c-piix4.c
@@ -20,7 +20,7 @@
/*
Supports:
Intel PIIX4, 440MX
- Serverworks OSB4, CSB5, CSB6, HT-1000
+ Serverworks OSB4, CSB5, CSB6, HT-1000, HT-1100
ATI IXP200, IXP300, IXP400, SB600, SB700, SB800
SMSC Victory66
@@ -423,6 +423,8 @@ static struct pci_device_id piix4_ids[] = {
PCI_DEVICE_ID_SERVERWORKS_CSB6) },
{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
PCI_DEVICE_ID_SERVERWORKS_HT1000SB) },
+ { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS,
+ PCI_DEVICE_ID_SERVERWORKS_HT1100LD) },
{ 0, }
};
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index aca8c45..531e628 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -1467,6 +1467,7 @@
#define PCI_DEVICE_ID_SERVERWORKS_CSB5 0x0201
#define PCI_DEVICE_ID_SERVERWORKS_CSB6 0x0203
#define PCI_DEVICE_ID_SERVERWORKS_HT1000SB 0x0205
+#define PCI_DEVICE_ID_SERVERWORKS_HT1100LD 0x0408
#define PCI_DEVICE_ID_SERVERWORKS_OSB4IDE 0x0211
#define PCI_DEVICE_ID_SERVERWORKS_CSB5IDE 0x0212
#define PCI_DEVICE_ID_SERVERWORKS_CSB6IDE 0x0213
--
1.6.0.6
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <20090324024326.GA22272-ljGZA5MgXf9g9hUCZPvPmw@public.gmane.org>]
* Re: [PATCH] i2c-piix4: Add support for the Broadcom HT1100 chipset [not found] ` <20090324024326.GA22272-ljGZA5MgXf9g9hUCZPvPmw@public.gmane.org> @ 2009-03-24 16:57 ` Jean Delvare [not found] ` <20090324175751.24c8b267-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Jean Delvare @ 2009-03-24 16:57 UTC (permalink / raw) To: Flavio Leitner; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA Hi Flavio, On Mon, 23 Mar 2009 23:43:26 -0300, Flavio Leitner wrote: > Add support for the Broadcom HT1100 LD chipset > > Signed-off-by: Flavio Leitner <fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > --- > drivers/i2c/busses/i2c-piix4.c | 4 +++- > include/linux/pci_ids.h | 1 + > 2 files changed, 4 insertions(+), 1 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c > index 761f9dd..64145b3 100644 > --- a/drivers/i2c/busses/i2c-piix4.c > +++ b/drivers/i2c/busses/i2c-piix4.c > @@ -20,7 +20,7 @@ > /* > Supports: > Intel PIIX4, 440MX > - Serverworks OSB4, CSB5, CSB6, HT-1000 > + Serverworks OSB4, CSB5, CSB6, HT-1000, HT-1100 > ATI IXP200, IXP300, IXP400, SB600, SB700, SB800 > SMSC Victory66 > > @@ -423,6 +423,8 @@ static struct pci_device_id piix4_ids[] = { > PCI_DEVICE_ID_SERVERWORKS_CSB6) }, > { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, > PCI_DEVICE_ID_SERVERWORKS_HT1000SB) }, > + { PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, > + PCI_DEVICE_ID_SERVERWORKS_HT1100LD) }, > { 0, } > }; > > diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h > index aca8c45..531e628 100644 > --- a/include/linux/pci_ids.h > +++ b/include/linux/pci_ids.h > @@ -1467,6 +1467,7 @@ > #define PCI_DEVICE_ID_SERVERWORKS_CSB5 0x0201 > #define PCI_DEVICE_ID_SERVERWORKS_CSB6 0x0203 > #define PCI_DEVICE_ID_SERVERWORKS_HT1000SB 0x0205 > +#define PCI_DEVICE_ID_SERVERWORKS_HT1100LD 0x0408 > #define PCI_DEVICE_ID_SERVERWORKS_OSB4IDE 0x0211 > #define PCI_DEVICE_ID_SERVERWORKS_CSB5IDE 0x0212 > #define PCI_DEVICE_ID_SERVERWORKS_CSB6IDE 0x0213 Applied, with minor improvements: * Keep the PCI IDs sorted numerically. * Update Kconfig and driver documentation file. Resulting patch is at: ftp://ftp.kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/i2c-piix4-add-support-for-broadcom-ht1100.patch and will be merged in 2.6.30. -- Jean Delvare ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20090324175751.24c8b267-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>]
* Re: [PATCH] i2c-piix4: Add support for the Broadcom HT1100 chipset [not found] ` <20090324175751.24c8b267-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org> @ 2009-03-24 19:53 ` Flavio Leitner 0 siblings, 0 replies; 3+ messages in thread From: Flavio Leitner @ 2009-03-24 19:53 UTC (permalink / raw) To: Jean Delvare; +Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA On Tue, Mar 24, 2009 at 05:57:51PM +0100, Jean Delvare wrote: > Applied, with minor improvements: > * Keep the PCI IDs sorted numerically. > * Update Kconfig and driver documentation file. > > Resulting patch is at: > ftp://ftp.kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/i2c-piix4-add-support-for-broadcom-ht1100.patch > and will be merged in 2.6.30. Alright, thanks! Flavio ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-03-24 19:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-24 2:43 [PATCH] i2c-piix4: Add support for the Broadcom HT1100 chipset Flavio Leitner
[not found] ` <20090324024326.GA22272-ljGZA5MgXf9g9hUCZPvPmw@public.gmane.org>
2009-03-24 16:57 ` Jean Delvare
[not found] ` <20090324175751.24c8b267-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2009-03-24 19:53 ` Flavio Leitner
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox