diff options
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/console.c | 4 | ||||
-rw-r--r-- | src/console/usbdebug_console.c | 10 |
2 files changed, 5 insertions, 9 deletions
diff --git a/src/console/console.c b/src/console/console.c index a73616e948..325170d060 100644 --- a/src/console/console.c +++ b/src/console/console.c @@ -30,6 +30,10 @@ #include <console/ne2k.h> #endif +#if CONFIG_USBDEBUG +#include <usbdebug.h> +#endif + #ifndef __PRE_RAM__ #include <string.h> #include <pc80/mc146818rtc.h> diff --git a/src/console/usbdebug_console.c b/src/console/usbdebug_console.c index 2270cebda4..a624b9dd21 100644 --- a/src/console/usbdebug_console.c +++ b/src/console/usbdebug_console.c @@ -50,15 +50,7 @@ unsigned get_ehci_debug(void) static void dbgp_init(void) { - struct ehci_debug_info *dbg_infox; - - /* At this point, all we have to do is copy the fixed address - * debug_info data structure to our version defined above. */ - - dbg_infox = (struct ehci_debug_info *) - ((CONFIG_RAMTOP) - sizeof(struct ehci_debug_info)); - - memcpy(&dbg_info, dbg_infox, sizeof(struct ehci_debug_info)); + usbdebug_init(CONFIG_EHCI_BAR, CONFIG_EHCI_DEBUG_OFFSET, &dbg_info); } static void dbgp_tx_byte(unsigned char data) |