]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
sh: Kill off more unused sh_bios callbacks.
authorPaul Mundt <lethal@linux-sh.org>
Tue, 12 Jan 2010 06:26:11 +0000 (15:26 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Tue, 12 Jan 2010 06:26:11 +0000 (15:26 +0900)
sh_bios_char_out() is not used by anything in-tree these days, so just
get rid of it.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/include/asm/sh_bios.h
arch/sh/kernel/sh_bios.c

index d8a67a17777c5c88540aefa76e613f7d7fe9e669..95714c28422b14eca127557896c2179fa36dbe23 100644 (file)
@@ -9,7 +9,6 @@
  * usually from within the early stages of kernel boot.
  */
 extern void sh_bios_console_write(const char *buf, unsigned int len);
-extern void sh_bios_char_out(char ch);
 extern void sh_bios_gdb_detach(void);
 
 extern void sh_bios_get_node_addr(unsigned char *node_addr);
index 2a5f2e0d505d49869075f431e439685e8c2f6963..2a9c6d50d2c03257637d0b0504bae8d17494dff6 100644 (file)
@@ -34,11 +34,6 @@ void sh_bios_console_write(const char *buf, unsigned int len)
        sh_bios_call(BIOS_CALL_CONSOLE_WRITE, (long)buf, (long)len, 0, 0);
 }
 
-void sh_bios_char_out(char ch)
-{
-       sh_bios_call(BIOS_CALL_CHAR_OUT, ch, 0, 0, 0);
-}
-
 void sh_bios_gdb_detach(void)
 {
        sh_bios_call(BIOS_CALL_GDB_DETACH, 0, 0, 0, 0);