From: Matteo Croce Date: Fri, 14 Sep 2007 20:26:54 +0000 (+0000) Subject: don't broke other archs, we're close to mainstream (i hope) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=fcd58c8def8caeaa426a88d55b8a1b7818dfa77e;hp=a45634eeb6f5946f1e8388e3f16964d885d73890 don't broke other archs, we're close to mainstream (i hope) SVN-Revision: 8778 --- diff --git a/target/linux/ar7/patches-2.6.22/500-serial_kludge.patch b/target/linux/ar7/patches-2.6.22/500-serial_kludge.patch index c6bd3a7784..c8f06a1440 100644 --- a/target/linux/ar7/patches-2.6.22/500-serial_kludge.patch +++ b/target/linux/ar7/patches-2.6.22/500-serial_kludge.patch @@ -15,12 +15,15 @@ diff -urN linux-2.6.22.orig/drivers/serial/8250.c linux-2.6.22/drivers/serial/82 }; #if defined (CONFIG_SERIAL_8250_AU1X00) -@@ -2436,7 +2443,7 @@ +@@ -2453,7 +2453,11 @@ { struct uart_8250_port *up = (struct uart_8250_port *)port; -- wait_for_xmitr(up, UART_LSR_THRE); ++#ifdef CONFIG_AR7 + wait_for_xmitr(up, BOTH_EMPTY); ++#else + wait_for_xmitr(up, UART_LSR_THRE); ++#endif serial_out(up, UART_TX, ch); }