Browse Source

Blackfin: do not delay on output bytes

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger 16 years ago
parent
commit
46ac352f0f
1 changed files with 0 additions and 4 deletions
  1. 0 4
      cpu/blackfin/serial.c

+ 0 - 4
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)