From: Martin Michlmayr Date: Sun, 29 Jul 2007 20:19:02 +0000 (+0200) Subject: [MIPS] Cobalt: Enable UART on RaQ1 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ac1a236aaaaaa24552bf16a8ba6dc5f88129fbd0;p=linux-beck.git [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 Signed-off-by: Ralf Baechle --- 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);