aboutsummaryrefslogtreecommitdiff
path: root/src/pc80
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-05-25 16:35:51 +0000
committerStefan Reinauer <stepan@openbios.org>2010-05-25 16:35:51 +0000
commit75a05dc0b91fb5748bb4f8b0eee9cee168c2cda1 (patch)
treed9702dd075518d17753d91ca687c1deb2f0e554d /src/pc80
parentda3237376f8f4d35731ef9abfb7a7e5b94926198 (diff)
fix most usbdebug warnings and fix function names.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5587 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/pc80')
-rw-r--r--src/pc80/usbdebug_serial.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pc80/usbdebug_serial.c b/src/pc80/usbdebug_serial.c
index 474882b6d1..5dd427dd00 100644
--- a/src/pc80/usbdebug_serial.c
+++ b/src/pc80/usbdebug_serial.c
@@ -17,15 +17,15 @@
#include "../lib/usbdebug.c"
-static void early_usbdebug_direct_init(void)
+static void early_usbdebug_init(void)
{
struct ehci_debug_info *dbg_info = (struct ehci_debug_info *)
(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - sizeof(struct ehci_debug_info));
- usbdebug_direct_init(EHCI_BAR, EHCI_DEBUG_OFFSET, dbg_info);
+ usbdebug_init(EHCI_BAR, EHCI_DEBUG_OFFSET, dbg_info);
}
-void usbdebug_direct_tx_byte(unsigned char data)
+void usbdebug_tx_byte(unsigned char data)
{
struct ehci_debug_info *dbg_info;
@@ -38,7 +38,7 @@ void usbdebug_direct_tx_byte(unsigned char data)
}
}
-void usbdebug_direct_ram_tx_byte(unsigned char data)
+void usbdebug_ram_tx_byte(unsigned char data)
{
struct ehci_debug_info *dbg_info;