Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142269
b: refs/heads/master
c: 8c4210e
h: refs/heads/master
i:
  142267: 9b54eb1
v: v3
  • Loading branch information
Sonic Zhang authored and Linus Torvalds committed Apr 6, 2009
1 parent f674d99 commit f6aa951
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: df04baf1e6a62ff232fa224504ccaa987b5be230
refs/heads/master: 8c4210e3362e1cd44bd10c857dc5f69c0bf434da
4 changes: 3 additions & 1 deletion trunk/drivers/serial/bfin_5xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,11 @@ static void bfin_serial_dma_rx_chars(struct bfin_serial_port *uart)
else
flg = TTY_NORMAL;

for (i = uart->rx_dma_buf.tail; i != uart->rx_dma_buf.head; i++) {
for (i = uart->rx_dma_buf.tail; ; i++) {
if (i >= UART_XMIT_SIZE)
i = 0;
if (i == uart->rx_dma_buf.head)
break;
if (!uart_handle_sysrq_char(&uart->port, uart->rx_dma_buf.buf[i]))
uart_insert_char(&uart->port, status, OE,
uart->rx_dma_buf.buf[i], flg);
Expand Down

0 comments on commit f6aa951

Please sign in to comment.