diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-02-07 19:24:23 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2014-02-10 19:34:20 +0100 |
commit | cb141bce35d6b0ee08a14c1097fa19bc10e4d9e7 (patch) | |
tree | 2661632eee56b6ac5f31fc87d8b0fef67ce06aef /src/drivers/usb/Makefile.inc | |
parent | 48e899d2d5d7adfccecbde5b75b7d8e7a1394af4 (diff) | |
download | coreboot-cb141bce35d6b0ee08a14c1097fa19bc10e4d9e7.tar.xz |
usbdebug: Split PCI EHCI part
There are EHCI compatible host controllers on ARM without PCI bus
architecture. Currently we have not come across one with the debug
capability though.
Change-Id: I8775c9814f6fdf8754f97265118a7186369d721d
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/5175
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/drivers/usb/Makefile.inc')
-rw-r--r-- | src/drivers/usb/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/usb/Makefile.inc b/src/drivers/usb/Makefile.inc index 43931a9c09..043ebe15bb 100644 --- a/src/drivers/usb/Makefile.inc +++ b/src/drivers/usb/Makefile.inc @@ -1,3 +1,3 @@ -romstage-$(CONFIG_USBDEBUG_IN_ROMSTAGE) += ehci_debug.c +romstage-$(CONFIG_USBDEBUG_IN_ROMSTAGE) += ehci_debug.c pci_ehci.c -ramstage-$(CONFIG_USBDEBUG) += ehci_debug.c +ramstage-$(CONFIG_USBDEBUG) += ehci_debug.c pci_ehci.c |