[coreboot-gerrit] New patch to review for coreboot: amd binaryPI: Fix usbdebug

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Fri Oct 30 11:13:44 CET 2015


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12264

-gerrit

commit 3538bce4e1cfd07f16da00c63306acf4080dd2fc
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Mon Jun 8 16:39:52 2015 +0300

    amd binaryPI: Fix usbdebug
    
    EHCI functions have moved.
    
    Change-Id: I47e79d3790b272b0fc322d534de733889679622b
    Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>
---
 src/southbridge/amd/pi/hudson/enable_usbdebug.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/southbridge/amd/pi/hudson/enable_usbdebug.c b/src/southbridge/amd/pi/hudson/enable_usbdebug.c
index c699831..f1e77ac 100644
--- a/src/southbridge/amd/pi/hudson/enable_usbdebug.c
+++ b/src/southbridge/amd/pi/hudson/enable_usbdebug.c
@@ -31,11 +31,11 @@
 pci_devfn_t pci_ehci_dbg_dev(unsigned int hcd_idx)
 {
 	if (hcd_idx==3)
-		return PCI_DEV(0, 0x16, 2);
+		return PCI_DEV(0, 0x16, 0);
 	else if (hcd_idx==2)
-		return PCI_DEV(0, 0x13, 2);
+		return PCI_DEV(0, 0x13, 0);
 	else
-		return PCI_DEV(0, 0x12, 2);
+		return PCI_DEV(0, 0x12, 0);
 }
 
 void pci_ehci_dbg_set_port(pci_devfn_t dev, unsigned int port)



More information about the coreboot-gerrit mailing list