PL011: Fix a bug in the UART FIFO polling
authorSandrine Bailleux <sandrine.bailleux@arm.com>
Mon, 2 Jun 2014 12:52:38 +0000 (13:52 +0100)
committerSandrine Bailleux <sandrine.bailleux@arm.com>
Thu, 5 Jun 2014 13:29:07 +0000 (14:29 +0100)
commitd831af90a3788c705bfdd49c9f9548b34a647f80
tree5c863a2e139dda0569ca67e47ed04763d06f90e7
parent977fbcd4e0842e590a961d6f40c14653caa9301a
PL011: Fix a bug in the UART FIFO polling

Before attempting to write a character, the PL011 driver polls
the PL011_UARTFR_TXFF bit to know whether the UART FIFO is full.
However, the comparison with 1 was incorrect because
PL011_UARTFR_TXFF is not at bit 0. This patch fixes it.

Change-Id: If78892345bbdc8a5e4ae4a1b7159753c609681b0
drivers/arm/pl011/pl011_console.c