]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Blackfin: do not delay on output bytes
authorMike Frysinger <vapier@gentoo.org>
Tue, 24 Mar 2009 02:36:10 +0000 (22:36 -0400)
committerMike Frysinger <vapier@gentoo.org>
Thu, 2 Apr 2009 10:42:13 +0000 (06:42 -0400)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
cpu/blackfin/serial.c

index 42534bd9b9c575a8f49d2ef22ebf297bf9317a01..386195556666415612dcb0f2690705f8a5f0898f 100644 (file)
@@ -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)