diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-03-24 02:36:10 (GMT) |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-04-02 10:42:13 (GMT) |
commit | 46ac352f0f9406a5f9aa157ac62867fb4650dfd3 (patch) | |
tree | 6d06e3be7312462d4676f0e19583324372936237 /cpu | |
parent | dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382 (diff) | |
download | u-boot-fsl-qoriq-46ac352f0f9406a5f9aa157ac62867fb4650dfd3.tar.xz |
Blackfin: do not delay on output bytes
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/blackfin/serial.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cpu/blackfin/serial.c b/cpu/blackfin/serial.c index 42534bd..3861955 100644 --- a/cpu/blackfin/serial.c +++ b/cpu/blackfin/serial.c @@ -115,10 +115,6 @@ void serial_putc(const char c) SSYNC(); WATCHDOG_RESET(); - - /* wait for the byte to be shifted over the line */ - while (!(uart_lsr_read() & TEMT)) - continue; } int serial_tstc(void) |