[ARM] Orion: kill orion_early_putstr()

Kill orion_early_putstr(), as it isn't used anywhere.

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
This commit is contained in:
Lennert Buytenhek 2008-02-07 21:54:18 +01:00 committed by Nicolas Pitre
parent 3c96e5a440
commit 27cd3ad231
1 changed files with 0 additions and 10 deletions

View File

@ -27,16 +27,6 @@ static void flush(void)
{
}
static void orion_early_putstr(const char *ptr)
{
char c;
while ((c = *ptr++) != '\0') {
if (c == '\n')
putc('\r');
putc(c);
}
}
/*
* nothing to do
*/