diff options
Diffstat (limited to 'arch/mips/mti-sead3/sead3-console.c')
| -rw-r--r-- | arch/mips/mti-sead3/sead3-console.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/mti-sead3/sead3-console.c b/arch/mips/mti-sead3/sead3-console.c index b36739108a0..031f47d6977 100644 --- a/arch/mips/mti-sead3/sead3-console.c +++ b/arch/mips/mti-sead3/sead3-console.c @@ -10,8 +10,8 @@  #include <linux/serial_reg.h>  #include <linux/io.h> -#define SEAD_UART1_REGS_BASE    0xbf000800   /* ttyS1 = DB9 port */ -#define SEAD_UART0_REGS_BASE    0xbf000900   /* ttyS0 = USB port   */ +#define SEAD_UART1_REGS_BASE	0xbf000800   /* ttyS1 = DB9 port */ +#define SEAD_UART0_REGS_BASE	0xbf000900   /* ttyS0 = USB port   */  #define PORT(base_addr, offset) ((unsigned int __iomem *)(base_addr+(offset)*4))  static char console_port = 1; @@ -26,7 +26,7 @@ static inline void serial_out(int offset, int value, unsigned int base_addr)  	__raw_writel(value, PORT(base_addr, offset));  } -void __init prom_init_early_console(char port) +void __init fw_init_early_console(char port)  {  	console_port = port;  }  |