Remove warnings from USB debug console code.

Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5683 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Myles Watson
2010-08-04 19:29:11 +00:00
parent 8c4f31b3b5
commit 127e976ec2
8 changed files with 31 additions and 12 deletions

View File

@@ -12,6 +12,9 @@ int console_tst_byte(void);
#if CONFIG_CONSOLE_VGA == 1
void vga_console_init(void);
#endif
#if CONFIG_USBDEBUG
#include <usbdebug.h>
#endif
struct console_driver {
void (*init)(void);

View File

@@ -18,6 +18,8 @@
#ifndef USBDEBUG_H
#define USBDEBUG_H
#include <ehci.h>
struct ehci_debug_info {
void *ehci_caps;
void *ehci_regs;
@@ -29,9 +31,14 @@ struct ehci_debug_info {
int dbgp_bulk_write_x(struct ehci_debug_info *dbg_info, const char *bytes, int size);
int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size);
int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, int requesttype, int request,
int value, int index, void *data, int size);
int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port);
void set_ehci_base(unsigned ehci_base);
void set_ehci_debug(unsigned ehci_deug);
unsigned get_ehci_debug(void);
void set_debug_port(unsigned port);
void usbdebug_ram_tx_byte(unsigned char data);
void usbdebug_tx_byte(unsigned char data);
#endif