]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[ARM] omap: improve is_omap_port()
authorRussell King <rmk@dyn-67.arm.linux.org.uk>
Mon, 1 Sep 2008 20:25:33 +0000 (21:25 +0100)
committerTony Lindgren <tony@atomide.com>
Thu, 4 Sep 2008 18:50:02 +0000 (11:50 -0700)
Make is_omap_port() take the uart_8250_port structure so it can do
whatever test it desires.  Convert the test to compare the physical
addresses rather than virtual addresses.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/plat-omap/include/mach/serial.h
drivers/serial/8250.c

index abea6ef349dcd05ed0563a36a90cd0ebf340026e..8a676a04be481b1630cb7d0fa61cc87b00498aa4 100644 (file)
 #define OMAP16XX_BASE_BAUD     (48000000/16)
 #define OMAP24XX_BASE_BAUD     (48000000/16)
 
-#define is_omap_port(p       ({int __ret = 0;                        \
-                       if (p == IO_ADDRESS(OMAP_UART1_BASE) || \
-                           p == IO_ADDRESS(OMAP_UART2_BASE) || \
-                           p == IO_ADDRESS(OMAP_UART3_BASE))   \
-                               __ret = 1;                      \
-                       __ret;                                  \
+#define is_omap_port(pt)       ({int __ret = 0;                        \
+                       if ((pt)->port.mapbase == OMAP_UART1_BASE ||    \
+                           (pt)->port.mapbase == OMAP_UART2_BASE ||    \
+                           (pt)->port.mapbase == OMAP_UART3_BASE)      \
+                               __ret = 1;                              \
+                       __ret;                                          \
                        })
 
 #endif
index 17e4ad795c2128c3fc3944090a0fc7118a3ed0ce..89ade18f7b0bf4b22319af8b7fb1c64db469a412 100644 (file)
@@ -2209,7 +2209,7 @@ serial8250_set_termios(struct uart_port *port, struct ktermios *termios,
 
 #ifdef CONFIG_ARCH_OMAP15XX
        /* Workaround to enable 115200 baud on OMAP1510 internal ports */
-       if (cpu_is_omap1510() && is_omap_port((unsigned int)up->port.membase)) {
+       if (cpu_is_omap1510() && is_omap_port(up)) {
                if (baud == 115200) {
                        quot = 1;
                        serial_out(up, UART_OMAP_OSC_12M_SEL, 1);