Title: [7391] trunk/drivers/serial/bfin_5xx.c: Fix a typo error of rts_pin
Revision
7391
Author
sonicz
Date
2009-09-20 23:46:13 -0400 (Sun, 20 Sep 2009)

Log Message

Fix a typo error of rts_pin

Reported by Eduardo Tagle.

Modified Paths

Diff

Modified: trunk/drivers/serial/bfin_5xx.c (7390 => 7391)


--- trunk/drivers/serial/bfin_5xx.c	2009-09-21 02:53:30 UTC (rev 7390)
+++ trunk/drivers/serial/bfin_5xx.c	2009-09-21 03:46:13 UTC (rev 7391)
@@ -1451,9 +1451,9 @@
 	res = platform_get_resource(pdev, IORESOURCE_IO, 1);
 	if (res == NULL) {
 # if defined(CONFIG_SERIAL_BFIN_HARD_CTSRTS)
-		uart->cts_pin = 0;
+		uart->rts_pin = 0;
 # else
-		uart->cts_pin = -1;
+		uart->rts_pin = -1;
 # endif
 	} else
 		uart->rts_pin = res->start;
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to