Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 254782
b: refs/heads/master
c: 186dcaa
h: refs/heads/master
v: v3
  • Loading branch information
Petr Štetiar authored and Russell King committed Jul 6, 2011
1 parent 8648671 commit 68c4c19
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 757df746fc5db0020ddab45914617a19d149c252
refs/heads/master: 186dcaa448c0a7a99933efac2af225fc4fe82c53
4 changes: 2 additions & 2 deletions trunk/arch/arm/mach-ep93xx/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,9 +251,9 @@ static void ep93xx_uart_set_mctrl(struct amba_device *dev,
unsigned int mcr;

mcr = 0;
if (!(mctrl & TIOCM_RTS))
if (mctrl & TIOCM_RTS)
mcr |= 2;
if (!(mctrl & TIOCM_DTR))
if (mctrl & TIOCM_DTR)
mcr |= 1;

__raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET);
Expand Down

0 comments on commit 68c4c19

Please sign in to comment.