X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/e572a2988fc53efe240bace712f703cdb15f5e67..0840c2ef25cbbe1634b050ba5c8bc1b036129d83:/target/linux/adm5120-2.6/image/lzma-loader/src/board.c diff --git a/target/linux/adm5120-2.6/image/lzma-loader/src/board.c b/target/linux/adm5120-2.6/image/lzma-loader/src/board.c index baffe04ef..22317f968 100644 --- a/target/linux/adm5120-2.6/image/lzma-loader/src/board.c +++ b/target/linux/adm5120-2.6/image/lzma-loader/src/board.c @@ -2,7 +2,7 @@ * ADM5120 specific board support for LZMA decompressor * * Copyright (C) 2007 OpenWrt.org - * Copyright (C) 2007 Gabor Juhos + * Copyright (C) 2007 Gabor Juhos * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -121,15 +121,6 @@ static void uart_init(void) #endif } -static void uart_putc(int ch) -{ - while ((UART_READ(UART_REG_FLAG) & UART_FLAG_TXFE) == 0); - - UART_WRITE(UART_REG_DATA, ch); - - while ((UART_READ(UART_REG_FLAG) & UART_FLAG_TXFE) == 0); -} - /* * INTC routines */ @@ -170,12 +161,13 @@ static void switch_init(void) SWITCH_WRITE(SWITCH_REG_PORT4_LED, 0); } -/* - * routines needed by decompress.c - */ void board_putc(int ch) { - uart_putc(ch); + while ((UART_READ(UART_REG_FLAG) & UART_FLAG_TXFE) == 0); + + UART_WRITE(UART_REG_DATA, ch); + + while ((UART_READ(UART_REG_FLAG) & UART_FLAG_TXFE) == 0); } void board_init(void)