diff options
| author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-01-15 00:25:39 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-01-15 00:25:39 -0500 |
| commit | c60ecec67ab3f6b5791ef49d502b7a61909aa13e (patch) | |
| tree | e8180ad2ec48a6063277ee51cf10dc8541dcac2f /arch/mips/cobalt/console.c | |
| parent | c23f72cae9523d29ff94eec8f30ccbdaf234b20e (diff) | |
| parent | 2e4f95822cc17cb7095d50babe2d2fc4c043fa25 (diff) | |
Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
[MIPS] Cacheops.h: Fix typo.
[MIPS] Cobalt: Qube1 has no serial port so don't use it
[MIPS] Cobalt: Fix ethernet interrupts for RaQ1
[MIPS] Kconfig fixes for BCM47XX platform
Diffstat (limited to 'arch/mips/cobalt/console.c')
| -rw-r--r-- | arch/mips/cobalt/console.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/cobalt/console.c b/arch/mips/cobalt/console.c index db330e811025..d1ba701c9dd1 100644 --- a/arch/mips/cobalt/console.c +++ b/arch/mips/cobalt/console.c | |||
| @@ -4,10 +4,15 @@ | |||
| 4 | #include <linux/io.h> | 4 | #include <linux/io.h> |
| 5 | #include <linux/serial_reg.h> | 5 | #include <linux/serial_reg.h> |
| 6 | 6 | ||
| 7 | #include <cobalt.h> | ||
| 8 | |||
| 7 | #define UART_BASE ((void __iomem *)CKSEG1ADDR(0x1c800000)) | 9 | #define UART_BASE ((void __iomem *)CKSEG1ADDR(0x1c800000)) |
| 8 | 10 | ||
| 9 | void prom_putchar(char c) | 11 | void prom_putchar(char c) |
| 10 | { | 12 | { |
| 13 | if (cobalt_board_id <= COBALT_BRD_ID_QUBE1) | ||
| 14 | return; | ||
| 15 | |||
| 11 | while (!(readb(UART_BASE + UART_LSR) & UART_LSR_THRE)) | 16 | while (!(readb(UART_BASE + UART_LSR) & UART_LSR_THRE)) |
| 12 | ; | 17 | ; |
| 13 | 18 | ||
