linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* compile errors on 2.4.2-ac16
@ 2001-03-09  3:35 Ken Hill
  2001-03-09  4:21 ` davej
  0 siblings, 1 reply; 2+ messages in thread
From: Ken Hill @ 2001-03-09  3:35 UTC (permalink / raw)
  To: linux-kernel

serial.c: In function `wait_for_xmitr':
serial.c:5497: `ASYNC_NO_FLOW' undeclared (first use in this function)
serial.c:5497: (Each undeclared identifier is reported only once
serial.c:5497: for each function it appears in.)
serial.c: In function `serial_console_setup':
serial.c:5666: `ASYNC_NO_FLOW' undeclared (first use in this function)
make[3]: *** [serial.o] Error 1
make[3]: Leaving directory `/usr/src/linux/drivers/char'
make[2]: *** [first_rule] Error 2
make[2]: Leaving directory `/usr/src/linux/drivers/char'
make[1]: *** [_subdir_char] Error 2
make[1]: Leaving directory `/usr/src/linux/drivers'
make: *** [_dir_drivers] Error 2

ý:.žË›±Êâmçë¢kaŠÉb²ßìzwm…ébïîžË›±Êâmébžìÿ‘êçz_âžØ^n‡r¡ö¦zË\x1aëh™¨è­Ú&£ûàz¿äz¹Þ—ú+€Ê+zf£¢·hšˆ§~†­†Ûiÿÿïêÿ‘êçz_è®\x0fæj:+v‰¨þ)ߣømšSåy«\x1e­æ¶\x17…\x01\x06­†ÛiÿÿðÃ\x0fí»\x1fè®\x0få’i\x7f

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: compile errors on 2.4.2-ac16
  2001-03-09  3:35 compile errors on 2.4.2-ac16 Ken Hill
@ 2001-03-09  4:21 ` davej
  0 siblings, 0 replies; 2+ messages in thread
From: davej @ 2001-03-09  4:21 UTC (permalink / raw)
  To: Ken Hill; +Cc: Linux Kernel Mailing List, Alan Cox

On Thu, 8 Mar 2001, Ken Hill wrote:

> serial.c:5497: `ASYNC_NO_FLOW' undeclared (first use in this function)
> serial.c:5666: `ASYNC_NO_FLOW' undeclared (first use in this function)

On quick inspection, just looks like a renamed declaration.
Does this fix things ?

regards,

Dave.

diff -urN --exclude-from=/home/davej/.exclude linux/drivers/char/serial.c linux-dj/drivers/char/serial.c
--- linux/drivers/char/serial.c	Fri Mar  9 03:59:02 2001
+++ linux-dj/drivers/char/serial.c	Fri Mar  9 04:12:25 2001
@@ -5494,7 +5494,7 @@
 		if (--tmout == 0)
 			break;
 	} while((status & BOTH_EMPTY) != BOTH_EMPTY);
-	if (info->flags & ASYNC_NO_FLOW)
+	if (info->flags & ASYNC_CONS_FLOW)
 		return;
 	tmout = 1000000;
 	while (--tmout && ((serial_in(info, UART_MSR) & UART_MSR_CTS) == 0));
@@ -5663,7 +5663,7 @@
 	 */
 	state = rs_table + co->index;
 	if (doflow == 0)
-		state->flags |= ASYNC_NO_FLOW;
+		state->flags |= ASYNC_CONS_FLOW;
 	info = &async_sercons;
 	info->magic = SERIAL_MAGIC;
 	info->state = state;


-- 
| Dave Jones.        http://www.suse.de/~davej
| SuSE Labs


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2001-03-09  4:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-03-09  3:35 compile errors on 2.4.2-ac16 Ken Hill
2001-03-09  4:21 ` davej

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).