* [PATCH 1/3] pci: Add Intel SCH PCI IDs @ 2008-04-22 2:01 alek du 2008-04-23 22:51 ` Jesse Barnes 0 siblings, 1 reply; 4+ messages in thread From: alek du @ 2008-04-22 2:01 UTC (permalink / raw) To: linux-kernel; +Cc: gregkh, jesse.barnes This patch adds Intel SCH chipsets (US15W, US15L, UL11L) PCI IDs, these IDs will be used by following SCH driver patches. Signed-off-by: Alek Du <alek.du@intel.com> --- include/linux/pci_ids.h | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 70eb3c8..b72b3b4 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h @@ -2413,6 +2413,20 @@ #define PCI_DEVICE_ID_INTEL_82443GX_0 0x71a0 #define PCI_DEVICE_ID_INTEL_82443GX_2 0x71a2 #define PCI_DEVICE_ID_INTEL_82372FB_1 0x7601 +#define PCI_DEVICE_ID_INTEL_SCH_HC 0x8100 +#define PCI_DEVICE_ID_INTEL_SCH_PE1 0x8110 +#define PCI_DEVICE_ID_INTEL_SCH_PE2 0x8112 +#define PCI_DEVICE_ID_INTEL_SCH_UC1 0x8114 +#define PCI_DEVICE_ID_INTEL_SCH_UC2 0x8115 +#define PCI_DEVICE_ID_INTEL_SCH_UC3 0x8116 +#define PCI_DEVICE_ID_INTEL_SCH_EC 0x8117 +#define PCI_DEVICE_ID_INTEL_SCH_UT 0x8118 +#define PCI_DEVICE_ID_INTEL_SCH_LPC 0x8119 +#define PCI_DEVICE_ID_INTEL_SCH_IDE 0x811a +#define PCI_DEVICE_ID_INTEL_SCH_HDA 0x811b +#define PCI_DEVICE_ID_INTEL_SCH_SD1 0x811c +#define PCI_DEVICE_ID_INTEL_SCH_SD2 0x811d +#define PCI_DEVICE_ID_INTEL_SCH_SD3 0x811e #define PCI_DEVICE_ID_INTEL_82454GX 0x84c4 #define PCI_DEVICE_ID_INTEL_82450GX 0x84c5 #define PCI_DEVICE_ID_INTEL_82451NX 0x84ca -- 1.5.2.5 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/3] pci: Add Intel SCH PCI IDs 2008-04-22 2:01 [PATCH 1/3] pci: Add Intel SCH PCI IDs alek du @ 2008-04-23 22:51 ` Jesse Barnes 2008-04-24 1:19 ` Alek Du 0 siblings, 1 reply; 4+ messages in thread From: Jesse Barnes @ 2008-04-23 22:51 UTC (permalink / raw) To: alek du; +Cc: linux-kernel, gregkh On Monday, April 21, 2008 7:01 pm alek du wrote: > This patch adds Intel SCH chipsets (US15W, US15L, UL11L) PCI IDs, these IDs > will be used by following SCH driver patches. > > Signed-off-by: Alek Du <alek.du@intel.com> > --- > include/linux/pci_ids.h | 14 ++++++++++++++ > 1 files changed, 14 insertions(+), 0 deletions(-) Alex, can any of these IDs be trimmed? We only want to bloat pci_ids.h with the stuff that's actually used in several drivers. Other IDs can just be defined directly in the driver in question... Thanks, Jesse ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/3] pci: Add Intel SCH PCI IDs 2008-04-23 22:51 ` Jesse Barnes @ 2008-04-24 1:19 ` Alek Du 2008-04-24 1:47 ` Jesse Barnes 0 siblings, 1 reply; 4+ messages in thread From: Alek Du @ 2008-04-24 1:19 UTC (permalink / raw) To: Barnes, Jesse; +Cc: linux-kernel, gregkh Jesse, Thanks. Trimmed it to add only two IDs, here is the patch: This patch adds Intel SCH chipsets (US15W, US15L, UL11L) PCI IDs, these IDs will be used by following SCH driver patches. Signed-off-by: Alek Du <alek.du@intel.com> --- include/linux/pci_ids.h | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 70eb3c8..b72b3b4 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h @@ -2413,6 +2413,8 @@ #define PCI_DEVICE_ID_INTEL_82443GX_0 0x71a0 #define PCI_DEVICE_ID_INTEL_82443GX_2 0x71a2 #define PCI_DEVICE_ID_INTEL_82372FB_1 0x7601 +#define PCI_DEVICE_ID_INTEL_SCH_LPC 0x8119 +#define PCI_DEVICE_ID_INTEL_SCH_IDE 0x811a #define PCI_DEVICE_ID_INTEL_82454GX 0x84c4 #define PCI_DEVICE_ID_INTEL_82450GX 0x84c5 #define PCI_DEVICE_ID_INTEL_82451NX 0x84ca -- 1.5.2.5 Thanks, Alek On Thu, 24 Apr 2008 06:51:04 +0800 "Barnes, Jesse" <jesse.barnes@intel.com> wrote: > Re: [PATCH 1/3] pci: Add Intel SCH PCI IDs > > On Monday, April 21, 2008 7:01 pm alek du wrote: > > This patch adds Intel SCH chipsets (US15W, US15L, UL11L) PCI IDs, > > these IDs will be used by following SCH driver patches. > > > > Signed-off-by: Alek Du <alek.du@intel.com> > > --- > > include/linux/pci_ids.h | 14 ++++++++++++++ > > 1 files changed, 14 insertions(+), 0 deletions(-) > > Alex, can any of these IDs be trimmed? We only want to bloat > pci_ids.h with the stuff that's actually used in several drivers. > Other IDs can just be defined directly in the driver in question... > > Thanks, > Jesse ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/3] pci: Add Intel SCH PCI IDs 2008-04-24 1:19 ` Alek Du @ 2008-04-24 1:47 ` Jesse Barnes 0 siblings, 0 replies; 4+ messages in thread From: Jesse Barnes @ 2008-04-24 1:47 UTC (permalink / raw) To: Alek Du; +Cc: linux-kernel, gregkh On Wednesday, April 23, 2008 6:19 pm Alek Du wrote: > Jesse, > > Thanks. Trimmed it to add only two IDs, here is the patch: > > This patch adds Intel SCH chipsets (US15W, US15L, UL11L) PCI IDs, these > IDs will be used by following SCH driver patches. > > Signed-off-by: Alek Du <alek.du@intel.com> Applied, thanks. Jesse ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-04-24 1:47 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-04-22 2:01 [PATCH 1/3] pci: Add Intel SCH PCI IDs alek du 2008-04-23 22:51 ` Jesse Barnes 2008-04-24 1:19 ` Alek Du 2008-04-24 1:47 ` Jesse Barnes
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox