]> git.karo-electronics.de Git - linux-beck.git/commitdiff
sparc64: Delete prom_puts() unused.
authorDavid S. Miller <davem@davemloft.net>
Tue, 16 Nov 2010 20:08:23 +0000 (12:08 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 16 Nov 2010 20:08:23 +0000 (12:08 -0800)
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc/prom/console_64.c

index 10322dc2f557a22d5befcc17dd4a27d8b6604f89..de67fc73d91e5c42a55f5859558ddbf101bfbc40 100644 (file)
@@ -81,19 +81,3 @@ prom_putchar(char c)
 {
        prom_nbputchar(c);
 }
-
-void
-prom_puts(const char *s, int len)
-{
-       unsigned long args[7];
-
-       args[0] = (unsigned long) "write";
-       args[1] = 3;
-       args[2] = 1;
-       args[3] = (unsigned int) prom_stdout;
-       args[4] = (unsigned long) s;
-       args[5] = len;
-       args[6] = (unsigned long) -1;
-
-       p1275_cmd_direct(args);
-}