Skip to content

Commit

Permalink
Fix build of cpm_uart due to core changes
Browse files Browse the repository at this point in the history
Commit ebd2c8f "serial: kill off uart_info"

broke the build of this driver, this fixes it.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
  • Loading branch information
Benjamin Herrenschmidt committed Sep 24, 2009
1 parent e090808 commit 09dd3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/serial/cpm_uart/cpm_uart_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ static int cpm_uart_tx_pump(struct uart_port *port)
u8 *p;
int count;
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 */
if (port->x_char) {
Expand Down

0 comments on commit 09dd3fc

Please sign in to comment.