aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/arm/plat-omap/include/mach/serial.h12
-rw-r--r--drivers/serial/8250.c2
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/plat-omap/include/mach/serial.h b/arch/arm/plat-omap/include/mach/serial.h
index cc6bfa51ccb5..515b89bee966 100644
--- a/arch/arm/plat-omap/include/mach/serial.h
+++ b/arch/arm/plat-omap/include/mach/serial.h
@@ -26,12 +26,12 @@
26#define OMAP1510_BASE_BAUD (12000000/16) 26#define OMAP1510_BASE_BAUD (12000000/16)
27#define OMAP16XX_BASE_BAUD (48000000/16) 27#define OMAP16XX_BASE_BAUD (48000000/16)
28 28
29#define is_omap_port(p) ({int __ret = 0; \ 29#define is_omap_port(pt) ({int __ret = 0; \
30 if (p == IO_ADDRESS(OMAP_UART1_BASE) || \ 30 if ((pt)->port.mapbase == OMAP_UART1_BASE || \
31 p == IO_ADDRESS(OMAP_UART2_BASE) || \ 31 (pt)->port.mapbase == OMAP_UART2_BASE || \
32 p == IO_ADDRESS(OMAP_UART3_BASE)) \ 32 (pt)->port.mapbase == OMAP_UART3_BASE) \
33 __ret = 1; \ 33 __ret = 1; \
34 __ret; \ 34 __ret; \
35 }) 35 })
36 36
37#endif 37#endif
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c
index 9ccc563d8730..47a60960bb1c 100644
--- a/drivers/serial/8250.c
+++ b/drivers/serial/8250.c
@@ -2213,7 +2213,7 @@ serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
2213 2213
2214#ifdef CONFIG_ARCH_OMAP15XX 2214#ifdef CONFIG_ARCH_OMAP15XX
2215 /* Workaround to enable 115200 baud on OMAP1510 internal ports */ 2215 /* Workaround to enable 115200 baud on OMAP1510 internal ports */
2216 if (cpu_is_omap1510() && is_omap_port((unsigned int)up->port.membase)) { 2216 if (cpu_is_omap1510() && is_omap_port(up)) {
2217 if (baud == 115200) { 2217 if (baud == 115200) {
2218 quot = 1; 2218 quot = 1;
2219 serial_out(up, UART_OMAP_OSC_12M_SEL, 1); 2219 serial_out(up, UART_OMAP_OSC_12M_SEL, 1);