diff options
author | Myles Watson <mylesgw@gmail.com> | 2010-08-04 19:29:11 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2010-08-04 19:29:11 +0000 |
commit | 127e976ec287df4ceb16a3b176b58497e58e0d8d (patch) | |
tree | 73f3a4b2a77f226bdf97d335aa4333d710070a2b /src/lib/usbdebug.c | |
parent | 8c4f31b3b5f6c3b7ba0ece39cd7df6273ff70a7e (diff) | |
download | coreboot-127e976ec287df4ceb16a3b176b58497e58e0d8d.tar.xz |
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
Diffstat (limited to 'src/lib/usbdebug.c')
-rw-r--r-- | src/lib/usbdebug.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/usbdebug.c b/src/lib/usbdebug.c index 801cfdbcaf..ec89bfe892 100644 --- a/src/lib/usbdebug.c +++ b/src/lib/usbdebug.c @@ -234,7 +234,7 @@ int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size) return dbgp_bulk_read(dbg_info->ehci_debug, dbg_info->devnum, dbg_info->endpoint_in, data, size); } -static int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, int requesttype, int request, +int dbgp_control_msg(struct ehci_dbg_port *ehci_debug, unsigned devnum, int requesttype, int request, int value, int index, void *data, int size) { unsigned pids, addr, ctrl; @@ -323,7 +323,7 @@ static int ehci_reset_port(struct ehci_regs *ehci_regs, int port) return -16;//-EBUSY; } -static int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port) +int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port) { unsigned status; int ret, reps; @@ -346,6 +346,8 @@ static int ehci_wait_for_port(struct ehci_regs *ehci_regs, int port) #else #define dbgp_printk(fmt_arg...) do {} while(0) #endif + +#ifdef __PRE_RAM__ static void usbdebug_init(unsigned ehci_bar, unsigned offset, struct ehci_debug_info *info) { struct ehci_caps *ehci_caps; @@ -547,5 +549,6 @@ next_debug_port: } } +#endif |