summaryrefslogtreecommitdiffstats
path: root/arch/mips/cobalt
diff options
context:
space:
mode:
authorMartin Michlmayr2007-07-29 22:19:02 +0200
committerRalf Baechle2007-07-31 22:35:34 +0200
commitac1a236aaaaaa24552bf16a8ba6dc5f88129fbd0 (patch)
tree8c1727fc6c21e439d0958c2f6642bc9ec210dea1 /arch/mips/cobalt
parent[MIPS] Remove unused GROUP_TOSHIBA_NAMES (diff)
downloadkernel-qcow2-linux-ac1a236aaaaaa24552bf16a8ba6dc5f88129fbd0.tar.gz
kernel-qcow2-linux-ac1a236aaaaaa24552bf16a8ba6dc5f88129fbd0.tar.xz
kernel-qcow2-linux-ac1a236aaaaaa24552bf16a8ba6dc5f88129fbd0.zip
[MIPS] Cobalt: Enable UART on RaQ1
Unlike the current code suggests, the RaQ1 actually has an UART. Only the Qube1 (Qube 2700) lacks one. Signed-off-by: Martin Michlmayr <tbm@cyrius.com> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/cobalt')
-rw-r--r--arch/mips/cobalt/serial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/cobalt/serial.c b/arch/mips/cobalt/serial.c
index c27116599a5f..08e739704cc9 100644
--- a/arch/mips/cobalt/serial.c
+++ b/arch/mips/cobalt/serial.c
@@ -55,9 +55,9 @@ static __init int cobalt_uart_add(void)
int retval;
/*
- * Cobalt Qube1 and RAQ1 have no UART.
+ * Cobalt Qube1 has no UART.
*/
- if (cobalt_board_id <= COBALT_BRD_ID_RAQ1)
+ if (cobalt_board_id == COBALT_BRD_ID_QUBE1)
return 0;
pdev = platform_device_alloc("serial8250", -1);