Skip to content

Commit

Permalink
sparc64: Delete prom_puts() unused.
Browse files Browse the repository at this point in the history
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Nov 16, 2010
1 parent b690c42 commit ce05a94
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions arch/sparc/prom/console_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit ce05a94

Please sign in to comment.