summaryrefslogtreecommitdiffstats
path: root/src/southbridge/amd/pi/hudson/ide.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2016-11-19 22:14:59 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2016-11-23 23:02:57 +0100
commit9d9a552ac53fb38c3f078ebd02645c5fa1b0959d (patch)
tree30a8ead6bfd0d96905bf2781c2ebc4523ef9c020 /src/southbridge/amd/pi/hudson/ide.c
parent006c1e8778e98a769ed74f67af670e154af1a055 (diff)
downloadcoreboot-9d9a552ac53fb38c3f078ebd02645c5fa1b0959d.tar.gz
coreboot-9d9a552ac53fb38c3f078ebd02645c5fa1b0959d.tar.bz2
coreboot-9d9a552ac53fb38c3f078ebd02645c5fa1b0959d.zip
AGESA binaryPI: Fix PCI ID namespace
The defines of device IDs reflects the vendor namespace the ID has been allocated from. Change-Id: Id98f45d5984752a9e8c0484d4cb94e93e55b12f6 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17510 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/southbridge/amd/pi/hudson/ide.c')
-rw-r--r--src/southbridge/amd/pi/hudson/ide.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/pi/hudson/ide.c b/src/southbridge/amd/pi/hudson/ide.c
index abb61e0253f2..acafb731c7b1 100644
--- a/src/southbridge/amd/pi/hudson/ide.c
+++ b/src/southbridge/amd/pi/hudson/ide.c
@@ -40,5 +40,5 @@ static struct device_operations ide_ops = {
static const struct pci_driver ide_driver __pci_driver = {
.ops = &ide_ops,
.vendor = PCI_VENDOR_ID_AMD,
- .device = PCI_DEVICE_ID_ATI_SB900_IDE,
+ .device = PCI_DEVICE_ID_AMD_SB900_IDE,
};