Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 60460
b: refs/heads/master
c: f798634
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Jul 17, 2007
1 parent bbf53c5 commit 1d430e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 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: 778feeb4757daef5d7118feab2319142367910dd
refs/heads/master: f798634d806615bee27d1b83479034087a02aa0f
12 changes: 1 addition & 11 deletions trunk/drivers/serial/sunhv.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,17 +258,7 @@ static void sunhv_stop_tx(struct uart_port *port)
/* port->lock held by caller. */
static void sunhv_start_tx(struct uart_port *port)
{
struct circ_buf *xmit = &port->info->xmit;

while (!uart_circ_empty(xmit)) {
long status = sun4v_con_putchar(xmit->buf[xmit->tail]);

if (status != HV_EOK)
break;

xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
port->icount.tx++;
}
transmit_chars(port);
}

/* port->lock is not held. */
Expand Down

0 comments on commit 1d430e1

Please sign in to comment.