Title: [6790] trunk/drivers/serial/bfin_sport_uart.c: underflow not overflow.
Revision
6790
Author
sonicz
Date
2009-06-18 21:54:15 -0500 (Thu, 18 Jun 2009)

Log Message

underflow not overflow.

Modified Paths


Diff

Modified: trunk/drivers/serial/bfin_sport_uart.c (6789 => 6790)


--- trunk/drivers/serial/bfin_sport_uart.c	2009-06-18 22:53:43 UTC (rev 6789)
+++ trunk/drivers/serial/bfin_sport_uart.c	2009-06-19 02:54:15 UTC (rev 6790)
@@ -419,7 +419,7 @@
 
 	switch (termios->c_cflag & CSIZE) {
 	case CS8:
-		pr_warning("use of 8bit mode often results in RX overflows\n");
+		pr_warning("use of 8bit mode often results in sport RX underflows\n");
 		up->csize = 8;
 		break;
 	case CS7:
@@ -438,7 +438,7 @@
 	if (termios->c_cflag & CSTOPB) {
 		up->stopb = 1;
 		if (up->csize == 8)
-			pr_warning("2 stop bits and 8bit mode often results in RX overflows\n");
+			pr_warning("2 stop bits and 7/8bit mode often results in sport RX underflows\n");
 	}
 	if (termios->c_cflag & PARENB) {
 		pr_warning("PAREN bits is not supported yet\n");
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to