Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57125
b: refs/heads/master
c: 2389b27
h: refs/heads/master
i:
  57123: 36bac18
v: v3
  • Loading branch information
Thomas Gleixner authored and Russell King committed May 30, 2007
1 parent 3eb1884 commit 193da81
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2ccdd1e77da52ad494e9af46bf272d816830cb28
refs/heads/master: 2389b272168ceec056ca1d8a870a97fa9c26e11a
3 changes: 2 additions & 1 deletion trunk/drivers/serial/amba-pl010.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,9 @@ static void pl010_rx_chars(struct uart_amba_port *uap)
ignore_char:
status = readb(uap->port.membase + UART01x_FR);
}
spin_unlock(&port->lock);
tty_flip_buffer_push(tty);
return;
spin_lock(&port->lock);
}

static void pl010_tx_chars(struct uart_amba_port *uap)
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/serial/amba-pl011.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,9 @@ static void pl011_rx_chars(struct uart_amba_port *uap)
ignore_char:
status = readw(uap->port.membase + UART01x_FR);
}
spin_unlock(&uap->port.lock);
tty_flip_buffer_push(tty);
return;
spin_lock(&uap->port.lock);
}

static void pl011_tx_chars(struct uart_amba_port *uap)
Expand Down

0 comments on commit 193da81

Please sign in to comment.