diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2013-02-21 06:51:33 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-02-21 06:51:33 -0500 |
commit | 8bfc245f9ad7bd4e461179e4e7852ef99b8b6144 (patch) | |
tree | 0ad091f645fbc8318634599d278966a53d3922ee /arch/mips/txx9 | |
parent | 612663a974065c3445e641d046769fe4c55a6438 (diff) | |
parent | 535237cecab2b078114be712c67e89a0db61965f (diff) |
Merge branch 'mips-next-3.9' of git://git.linux-mips.org/pub/scm/john/linux-john into mips-for-linux-next
Diffstat (limited to 'arch/mips/txx9')
-rw-r--r-- | arch/mips/txx9/generic/setup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c index 560fe8991753..5524f2c7b05c 100644 --- a/arch/mips/txx9/generic/setup.c +++ b/arch/mips/txx9/generic/setup.c | |||
@@ -513,19 +513,19 @@ void __init txx9_sio_init(unsigned long baseaddr, int irq, | |||
513 | } | 513 | } |
514 | 514 | ||
515 | #ifdef CONFIG_EARLY_PRINTK | 515 | #ifdef CONFIG_EARLY_PRINTK |
516 | static void __init null_prom_putchar(char c) | 516 | static void null_prom_putchar(char c) |
517 | { | 517 | { |
518 | } | 518 | } |
519 | void (*txx9_prom_putchar)(char c) __initdata = null_prom_putchar; | 519 | void (*txx9_prom_putchar)(char c) = null_prom_putchar; |
520 | 520 | ||
521 | void __init prom_putchar(char c) | 521 | void prom_putchar(char c) |
522 | { | 522 | { |
523 | txx9_prom_putchar(c); | 523 | txx9_prom_putchar(c); |
524 | } | 524 | } |
525 | 525 | ||
526 | static void __iomem *early_txx9_sio_port; | 526 | static void __iomem *early_txx9_sio_port; |
527 | 527 | ||
528 | static void __init early_txx9_sio_putchar(char c) | 528 | static void early_txx9_sio_putchar(char c) |
529 | { | 529 | { |
530 | #define TXX9_SICISR 0x0c | 530 | #define TXX9_SICISR 0x0c |
531 | #define TXX9_SITFIFO 0x1c | 531 | #define TXX9_SITFIFO 0x1c |