Commit 27cd3ad2 authored by Lennert Buytenhek's avatar Lennert Buytenhek Committed by Nicolas Pitre

[ARM] Orion: kill orion_early_putstr()

Kill orion_early_putstr(), as it isn't used anywhere.
Signed-off-by: default avatarLennert Buytenhek <buytenh@marvell.com>
Signed-off-by: default avatarNicolas Pitre <nico@marvell.com>
parent 3c96e5a4
...@@ -27,16 +27,6 @@ static void flush(void) ...@@ -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 * nothing to do
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment