diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2014-12-15 07:55:52 +0100 |
---|---|---|
committer | Bruce Griffith <Bruce.Griffith@se-eng.com> | 2014-12-16 06:42:47 +0100 |
commit | 68402103eeae3e63a1ac358e6e7ebcc26d6ad249 (patch) | |
tree | cd4247408fbf2dbbbd5195ac57e858adb394a718 /src/southbridge/amd/pi/avalon/pci_devs.h | |
parent | 51dde6fe3b2fec59fd42f36fd025ac09910a3764 (diff) |
southbridge/amd/pi/avalon/pci_devs.h: Correct define `EHCI3_DEV`
It appears the decimal value was used instead of the hexadecimal value.
Apply commit 59919ad1 (southbridge/amd/agesa/hudson: Correct incorrect
#define) to AMD Avalon, whose `pci_devs.h` was copied from AMD Hudson.
The incorrect define was introduced in commit 2093c4f7 (AMD/agesa: Add
functions for AMD PCI IRQ routing).
Change-Id: I7ccc060e8fa032080375259c3b11d39e2deb8e9e
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/7800
Tested-by: build bot (Jenkins)
Reviewed-by: Bruce Griffith <Bruce.Griffith@se-eng.com>
Diffstat (limited to 'src/southbridge/amd/pi/avalon/pci_devs.h')
-rw-r--r-- | src/southbridge/amd/pi/avalon/pci_devs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/pi/avalon/pci_devs.h b/src/southbridge/amd/pi/avalon/pci_devs.h index 2af1659ebd..d2549d47b3 100644 --- a/src/southbridge/amd/pi/avalon/pci_devs.h +++ b/src/southbridge/amd/pi/avalon/pci_devs.h @@ -56,7 +56,7 @@ #define EHCI1_FUNC 2 #define EHCI2_DEV 0x13 #define EHCI2_FUNC 2 -#define EHCI3_DEV 0x22 +#define EHCI3_DEV 0x16 #define EHCI3_FUNC 2 #define EHCI_DEVID 0x7808 #define EHCI1_DEVFN PCI_DEVFN(EHCI1_DEV,EHCI1_FUNC) |