This patch adds PCI device IDs for the Intel EP80579 Integrated Processor,
and renames some existing macros for clarity. Signed-off-by: Ed Swierk <eswierk@arastra.com> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3536 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -79,23 +79,23 @@ static struct device_operations sata_ops = {
|
||||
static struct pci_driver sata_driver __pci_driver = {
|
||||
.ops = &sata_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = PCI_DEVICE_ID_INTEL_3100_SATA,
|
||||
.device = PCI_DEVICE_ID_INTEL_3100_IDE,
|
||||
};
|
||||
|
||||
static struct pci_driver sata_driver_nr __pci_driver = {
|
||||
.ops = &sata_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = PCI_DEVICE_ID_INTEL_3100_SATA_R,
|
||||
.device = PCI_DEVICE_ID_INTEL_3100_AHCI,
|
||||
};
|
||||
|
||||
static struct pci_driver sata_driver_ep80579 __pci_driver = {
|
||||
.ops = &sata_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = PCI_DEVICE_ID_INTEL_EP80579_SATA,
|
||||
.device = PCI_DEVICE_ID_INTEL_EP80579_IDE,
|
||||
};
|
||||
|
||||
static struct pci_driver sata_driver_nr_ep80579 __pci_driver = {
|
||||
.ops = &sata_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = PCI_DEVICE_ID_INTEL_EP80579_SATA_R,
|
||||
.device = PCI_DEVICE_ID_INTEL_EP80579_AHCI,
|
||||
};
|
||||
|
@@ -52,17 +52,17 @@ static struct device_operations uhci_ops = {
|
||||
static struct pci_driver uhci_driver __pci_driver = {
|
||||
.ops = &uhci_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = PCI_DEVICE_ID_INTEL_3100_USB,
|
||||
.device = PCI_DEVICE_ID_INTEL_3100_UHCI,
|
||||
};
|
||||
|
||||
static struct pci_driver usb2_driver __pci_driver = {
|
||||
.ops = &uhci_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = PCI_DEVICE_ID_INTEL_3100_USB2,
|
||||
.device = PCI_DEVICE_ID_INTEL_3100_UHCI2,
|
||||
};
|
||||
|
||||
static struct pci_driver uhci_driver_ep80579 __pci_driver = {
|
||||
.ops = &uhci_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = PCI_DEVICE_ID_INTEL_EP80579_USB,
|
||||
.device = PCI_DEVICE_ID_INTEL_EP80579_UHCI,
|
||||
};
|
||||
|
Reference in New Issue
Block a user