mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
Fix build of cpm_uart due to core changes
Commit ebd2c8f6d2
"serial: kill off uart_info"
broke the build of this driver, this fixes it.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
e0908085fc
commit
09dd3fc19c
1 changed files with 1 additions and 1 deletions
|
@ -649,7 +649,7 @@ static int cpm_uart_tx_pump(struct uart_port *port)
|
||||||
u8 *p;
|
u8 *p;
|
||||||
int count;
|
int count;
|
||||||
struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
|
struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port;
|
||||||
struct circ_buf *xmit = &port->info->xmit;
|
struct circ_buf *xmit = &port->state->xmit;
|
||||||
|
|
||||||
/* Handle xon/xoff */
|
/* Handle xon/xoff */
|
||||||
if (port->x_char) {
|
if (port->x_char) {
|
||||||
|
|
Loading…
Reference in a new issue