search for: omap_uart_resum

Displaying 2 results from an estimated 2 matches for "omap_uart_resum".

Did you mean: omap_uart_resume
2013 Aug 28
1
[PATCH] Fix compilation on ARM
...art_tx_ready(struct serial_port *port) { struct exynos4210_uart *uart = port->uart; diff --git a/xen/drivers/char/omap-uart.c b/xen/drivers/char/omap-uart.c index 91391c8..ffa71db 100644 --- a/xen/drivers/char/omap-uart.c +++ b/xen/drivers/char/omap-uart.c @@ -226,7 +226,7 @@ static void omap_uart_resume(struct serial_port *port) BUG(); } -static unsigned int omap_uart_tx_ready(struct serial_port *port) +static int omap_uart_tx_ready(struct serial_port *port) { struct omap_uart *uart = port->uart; uint32_t reg; diff --git a/xen/drivers/char/pl011.c b/xen/drivers/char/pl011.c...
2013 Aug 13
13
[PATCH v8 8/5] Add UART support and arch timer initialization for OMAP5
Since OMAP UART has a few distinct features than common 8250 UART, I re-implemented its driver rather than porting it based on ns16550.c. There are mainly two big differences between the implementations. First, OMAP UART introduces the concept of register access mode, which divides the register map into seperated space. Switching the access mode is then necessary when configuring it. Second, THRE