aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/mach-omap2/serial.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c
index 645546cbd265..0f508109adcc 100644
--- a/arch/arm/mach-omap2/serial.c
+++ b/arch/arm/mach-omap2/serial.c
@@ -609,8 +609,11 @@ void __init omap_serial_init(void)
609 uart->fck = NULL; 609 uart->fck = NULL;
610 } 610 }
611 611
612 if (!uart->ick || !uart->fck) 612 /* FIXME: Remove this once the clkdev is ready */
613 continue; 613 if (!cpu_is_omap44xx()) {
614 if (!uart->ick || !uart->fck)
615 continue;
616 }
614 617
615 uart->num = i; 618 uart->num = i;
616 p->private_data = uart; 619 p->private_data = uart;