aboutsummaryrefslogtreecommitdiff
path: root/arch/mips/cobalt/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/cobalt/console.c')
-rw-r--r--arch/mips/cobalt/console.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/mips/cobalt/console.c b/arch/mips/cobalt/console.c
deleted file mode 100644
index 0485d51f721..00000000000
--- a/arch/mips/cobalt/console.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * (C) P. Horton 2006
- */
-#include <linux/serial_reg.h>
-
-#include <asm/addrspace.h>
-
-#include <cobalt.h>
-
-void prom_putchar(char c)
-{
- while(!(COBALT_UART[UART_LSR] & UART_LSR_THRE))
- ;
-
- COBALT_UART[UART_TX] = c;
-}