Title: [8217] trunk/arch/blackfin: add gpio_vrsel_active to meet the requirement of gpio active low
Revision
8217
Author
cliff
Date
2010-01-21 23:02:46 -0500 (Thu, 21 Jan 2010)

Log Message

add gpio_vrsel_active to meet the requirement of gpio active low

Modified Paths


Diff

Modified: trunk/arch/blackfin/mach-bf527/boards/cm_bf527.c (8216 => 8217)


--- trunk/arch/blackfin/mach-bf527/boards/cm_bf527.c	2010-01-22 03:46:15 UTC (rev 8216)
+++ trunk/arch/blackfin/mach-bf527/boards/cm_bf527.c	2010-01-22 04:02:46 UTC (rev 8217)
@@ -98,6 +98,10 @@
 	.num_eps	= 8,
 	.dma_channels	= 8,
 	.gpio_vrsel	= GPIO_PF11,
+	/* Some custom boards need to be active low, just set it to "0"
+	 * if it is the case.
+	 */
+	.gpio_vrsel_active	= 1,
 };
 
 static struct musb_hdrc_platform_data musb_plat = {

Modified: trunk/arch/blackfin/mach-bf527/boards/ezbrd.c (8216 => 8217)


--- trunk/arch/blackfin/mach-bf527/boards/ezbrd.c	2010-01-22 03:46:15 UTC (rev 8216)
+++ trunk/arch/blackfin/mach-bf527/boards/ezbrd.c	2010-01-22 04:02:46 UTC (rev 8217)
@@ -62,6 +62,10 @@
 	.num_eps	= 8,
 	.dma_channels	= 8,
 	.gpio_vrsel	= GPIO_PG13,
+	/* Some custom boards need to be active low, just set it to "0"
+	 * if it is the case.
+	 */
+	.gpio_vrsel_active	= 1,
 };
 
 static struct musb_hdrc_platform_data musb_plat = {

Modified: trunk/arch/blackfin/mach-bf527/boards/ezkit.c (8216 => 8217)


--- trunk/arch/blackfin/mach-bf527/boards/ezkit.c	2010-01-22 03:46:15 UTC (rev 8216)
+++ trunk/arch/blackfin/mach-bf527/boards/ezkit.c	2010-01-22 04:02:46 UTC (rev 8217)
@@ -102,6 +102,10 @@
 	.num_eps	= 8,
 	.dma_channels	= 8,
 	.gpio_vrsel	= GPIO_PG13,
+	/* Some custom boards need to be active low, just set it to "0"
+	 * if it is the case.
+	 */
+	.gpio_vrsel_active	= 1,
 };
 
 static struct musb_hdrc_platform_data musb_plat = {

Modified: trunk/arch/blackfin/mach-bf548/boards/cm_bf548.c (8216 => 8217)


--- trunk/arch/blackfin/mach-bf548/boards/cm_bf548.c	2010-01-22 03:46:15 UTC (rev 8216)
+++ trunk/arch/blackfin/mach-bf548/boards/cm_bf548.c	2010-01-22 04:02:46 UTC (rev 8217)
@@ -510,6 +510,10 @@
 	.num_eps	= 8,
 	.dma_channels	= 8,
 	.gpio_vrsel	= GPIO_PH6,
+	/* Some custom boards need to be active low, just set it to "0"
+	 * if it is the case.
+	 */
+	.gpio_vrsel_active	= 1,
 };
 
 static struct musb_hdrc_platform_data musb_plat = {

Modified: trunk/arch/blackfin/mach-bf548/boards/ezkit.c (8216 => 8217)


--- trunk/arch/blackfin/mach-bf548/boards/ezkit.c	2010-01-22 03:46:15 UTC (rev 8216)
+++ trunk/arch/blackfin/mach-bf548/boards/ezkit.c	2010-01-22 04:02:46 UTC (rev 8217)
@@ -615,6 +615,10 @@
 	.num_eps	= 8,
 	.dma_channels	= 8,
 	.gpio_vrsel	= GPIO_PE7,
+	/* Some custom boards need to be active low, just set it to "0"
+	 * if it is the case.
+	 */
+	.gpio_vrsel_active	= 1,
 };
 
 static struct musb_hdrc_platform_data musb_plat = {
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to