Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57815
b: refs/heads/master
c: cf68676
h: refs/heads/master
i:
  57813: 1945afb
  57811: de9cf0c
  57807: d2f5ad4
v: v3
  • Loading branch information
Mike Frysinger authored and Bryan Wu committed Jun 11, 2007
1 parent e4b5d66 commit 24ad39b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9808901b6c63a1c850b072e624c228901a9eaf10
refs/heads/master: cf68676222e54cd0a31efd968da00e65f9a0963f
8 changes: 8 additions & 0 deletions trunk/drivers/serial/bfin_5xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,14 @@ static void bfin_serial_mctrl_check(struct bfin_serial_port *uart)
*/
static void bfin_serial_break_ctl(struct uart_port *port, int break_state)
{
struct bfin_serial_port *uart = (struct bfin_serial_port *)port;
u16 lcr = UART_GET_LCR(uart);
if (break_state)
lcr |= SB;
else
lcr &= ~SB;
UART_PUT_LCR(uart, lcr);
SSYNC();
}

static int bfin_serial_startup(struct uart_port *port)
Expand Down

0 comments on commit 24ad39b

Please sign in to comment.