- function prototypes do not need "extern"

- fix up debug messages of usb debug console
(trivial)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4162 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2009-04-21 23:05:13 +00:00
committed by Stefan Reinauer
parent c6236edd47
commit 7e16bf3a55
2 changed files with 23 additions and 21 deletions

View File

@@ -9,9 +9,10 @@ struct ehci_debug_info {
unsigned endpoint_out;
unsigned endpoint_in;
};
extern int dbgp_bulk_write_x(struct ehci_debug_info *dbg_info, const char *bytes, int size);
extern int dbgp_bulk_read_x(struct ehci_debug_info *dbg_info, void *data, int size);
extern void set_ehci_base(unsigned ehci_base);
extern void set_ehci_debug(unsigned ehci_deug);
extern unsigned get_ehci_debug(void);
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);
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);
#endif