diff options
author | Ed Swierk <eswierk@arastra.com> | 2008-08-25 17:02:09 +0000 |
---|---|---|
committer | Ed Swierk <eswierk@arastra.com> | 2008-08-25 17:02:09 +0000 |
commit | 6adfaa690ce918a35098b2b91028f20298b974aa (patch) | |
tree | cfd76446cd1221415bb2beb695a113a8c5c36bb9 /src/southbridge/intel/i3100 | |
parent | 6c66c957879e6569770cf420b8b916ed8414747e (diff) | |
download | coreboot-6adfaa690ce918a35098b2b91028f20298b974aa.tar.xz |
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
Diffstat (limited to 'src/southbridge/intel/i3100')
-rw-r--r-- | src/southbridge/intel/i3100/i3100_sata.c | 8 | ||||
-rw-r--r-- | src/southbridge/intel/i3100/i3100_uhci.c | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/southbridge/intel/i3100/i3100_sata.c b/src/southbridge/intel/i3100/i3100_sata.c index 7f1bd77e20..49ecf9240a 100644 --- a/src/southbridge/intel/i3100/i3100_sata.c +++ b/src/southbridge/intel/i3100/i3100_sata.c @@ -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, }; diff --git a/src/southbridge/intel/i3100/i3100_uhci.c b/src/southbridge/intel/i3100/i3100_uhci.c index 85a1c1b10a..e5c25a95a1 100644 --- a/src/southbridge/intel/i3100/i3100_uhci.c +++ b/src/southbridge/intel/i3100/i3100_uhci.c @@ -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, }; |