Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 55034
b: refs/heads/master
c: a348119
h: refs/heads/master
v: v3
  • Loading branch information
Grant Likely authored and Paul Mackerras committed May 7, 2007
1 parent 195def6 commit de7974b
Show file tree
Hide file tree
Showing 2 changed files with 4 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: 3a5cc44268d9c3eee301f366801005e331b1e871
refs/heads/master: a3481197783c187707090504062488862768260a
5 changes: 3 additions & 2 deletions trunk/drivers/serial/mpc52xx_uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,10 @@ mpc52xx_uart_shutdown(struct uart_port *port)
{
struct mpc52xx_psc __iomem *psc = PSC(port);

/* Shut down the port, interrupt and all */
/* Shut down the port. Leave TX active if on a console port */
out_8(&psc->command,MPC52xx_PSC_RST_RX);
out_8(&psc->command,MPC52xx_PSC_RST_TX);
if (!uart_console(port))
out_8(&psc->command,MPC52xx_PSC_RST_TX);

port->read_status_mask = 0;
out_be16(&psc->mpc52xx_psc_imr,port->read_status_mask);
Expand Down

0 comments on commit de7974b

Please sign in to comment.