Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3810cd4 authored by Oskar Schirmer's avatar Oskar Schirmer Committed by Linus Torvalds
Browse files

imx: serial: fix whitespaces (no changes in functionality)

parent 3e3b5c08
Loading
Loading
Loading
Loading
+23 −25
Original line number Diff line number Diff line
@@ -302,8 +302,7 @@ static inline void imx_transmit_buffer(struct imx_port *sport)
		/* send xmit->buf[xmit->tail]
		 * out the port here */
		writel(xmit->buf[xmit->tail], sport->port.membase + URTX0);
		xmit->tail = (xmit->tail + 1) &
		         (UART_XMIT_SIZE - 1);
		xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
		sport->port.icount.tx++;
		if (uart_circ_empty(xmit))
			break;
@@ -395,8 +394,7 @@ static irqreturn_t imx_rxint(int irq, void *dev_id)
				continue;
		}

		if (uart_handle_sysrq_char
		            (&sport->port, (unsigned char)rx))
		if (uart_handle_sysrq_char(&sport->port, (unsigned char)rx))
			continue;

		if (rx & (URXD_PRERR | URXD_OVRRUN | URXD_FRMERR) ) {