Skip to content
Snippets Groups Projects
Commit 3fe7b589 authored by Guennadi Liakhovetski's avatar Guennadi Liakhovetski Committed by Jean-Christophe PLAGNIOL-VILLARD
Browse files

S3C64XX: remove broken HWFLOW support from the serial driver


As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
broken and currently unused. Remove it.

Signed-off-by: default avatarGuennadi Liakhovetski <lg@denx.de>
parent 2fb28dcf
No related branches found
No related tags found
No related merge requests found
......@@ -119,22 +119,6 @@ int serial_getc(void)
return uart->URXH & 0xff;
}
#ifdef CONFIG_HWFLOW
static int hwflow; /* turned off by default */
int hwflow_onoff(int on)
{
switch (on) {
case 1:
hwflow = 1; /* turn on */
break;
case -1:
hwflow = 0; /* turn off */
break;
}
return hwflow;
}
#endif
#ifdef CONFIG_MODEM_SUPPORT
static int be_quiet;
void disable_putc(void)
......@@ -164,11 +148,6 @@ void serial_putc(const char c)
/* wait for room in the tx FIFO */
while (!(uart->UTRSTAT & 0x2));
#ifdef CONFIG_HWFLOW
/* Wait for CTS up */
while (hwflow && !(uart->UMSTAT & 0x1));
#endif
uart->UTXH = c;
/* If \n, also do \r */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment