summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel/i3100
diff options
context:
space:
mode:
authorEd Swierk <eswierk@arastra.com>2008-08-25 17:02:09 +0000
committerEd Swierk <eswierk@arastra.com>2008-08-25 17:02:09 +0000
commit6adfaa690ce918a35098b2b91028f20298b974aa (patch)
treecfd76446cd1221415bb2beb695a113a8c5c36bb9 /src/southbridge/intel/i3100
parent6c66c957879e6569770cf420b8b916ed8414747e (diff)
downloadcoreboot-staging-6adfaa690ce918a35098b2b91028f20298b974aa.zip
coreboot-staging-6adfaa690ce918a35098b2b91028f20298b974aa.tar.gz
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.c8
-rw-r--r--src/southbridge/intel/i3100/i3100_uhci.c6
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 7f1bd77..49ecf92 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 85a1c1b..e5c25a9 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,
};
OpenPOWER on IntegriCloud