This patch updates the PCI ID of the Geode IDE device to include the revision.
authorMarc Jones <marc.jones@amd.com>
Thu, 10 May 2007 23:12:18 +0000 (23:12 +0000)
committerPeter Stuge <peter@stuge.se>
Thu, 10 May 2007 23:12:18 +0000 (23:12 +0000)
Signed-off-by: Marc Jones <marc.jones@amd.com>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2656 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/include/device/pci_ids.h
src/southbridge/amd/cs5536/cs5536_ide.c

index 85fa3363c5183d78a83b71a881771dd393c47671..791b8ea528b58630bb2bf68bd6220e6be745b6ee 100644 (file)
 #define PCI_DEVICE_ID_AMD_AES          0x2082
 #define PCI_DEVICE_ID_AMD_CS5536_ISA   0x2090
 #define PCI_DEVICE_ID_AMD_CS5536_FLASH 0x2091
-#define PCI_DEVICE_ID_AMD_CS5536_IDE_A0        0x2092
+#define PCI_DEVICE_ID_AMD_CS5536_A0_IDE        0x2092
 #define PCI_DEVICE_ID_AMD_CS5536_AUDIO 0x2093
 #define PCI_DEVICE_ID_AMD_CS5536_OHCI  0x2094
 #define PCI_DEVICE_ID_AMD_CS5536_EHCI  0x2095
 #define PCI_DEVICE_ID_AMD_CS5536_UDC   0x2096
 #define PCI_DEVICE_ID_AMD_CS5536_OTG   0x2097
-#define PCI_DEVICE_ID_AMD_CS5536_IDE   0x209A
+#define PCI_DEVICE_ID_AMD_CS5536_B0_IDE        0x209A
 
 #define PCI_VENDOR_ID_TRIDENT          0x1023
 #define PCI_DEVICE_ID_TRIDENT_4DWAVE_DX        0x2000
index 74c4965bc34ebbb563190332402b4575c4da0b2d..ceb16eec814f948f94aba5ef2bd9de0a64065cbe 100644 (file)
@@ -64,5 +64,5 @@ static struct device_operations ide_ops = {
 static struct pci_driver ide_driver __pci_driver = {
        .ops = &ide_ops,
        .vendor = PCI_VENDOR_ID_AMD,
-       .device = PCI_DEVICE_ID_AMD_CS5536_IDE,
+       .device = PCI_DEVICE_ID_AMD_CS5536_B0_IDE,
 };