summary refs log tree commit diff
path: root/arch/arm/mach-pxa/corgi.c
diff options
context:
space:
mode:
authorEric Miao <eric.y.miao@gmail.com>2010-01-11 15:43:24 +0800
committerEric Miao <eric.y.miao@gmail.com>2010-01-13 21:01:08 +0800
commit0375fc03cd0bd31fb8b37e40f091f8ffc567acfd (patch)
treed9ecba9bd94246e3d0c563dd3146654c36ffd5e8 /arch/arm/mach-pxa/corgi.c
parent7284ce6c9f6153d1777df5f310c959724d1bd446 (diff)
downloadlinux-0375fc03cd0bd31fb8b37e40f091f8ffc567acfd.tar.gz
[ARM] pxa/corgi: fix incorrect default GPIO for UDC Vbus
There is no such GPIO for udc vbus sensing, put '-1' instead of default
'0' as '0' does mean a valid GPIO.

Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa/corgi.c')
-rw-r--r--arch/arm/mach-pxa/corgi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c
index 74446cf8ae69..da3156d8690b 100644
--- a/arch/arm/mach-pxa/corgi.c
+++ b/arch/arm/mach-pxa/corgi.c
@@ -457,6 +457,7 @@ static struct pxaficp_platform_data corgi_ficp_platform_data = {
  * USB Device Controller
  */
 static struct pxa2xx_udc_mach_info udc_info __initdata = {
+	.gpio_vbus		= -1,
 	/* no connect GPIO; corgi can't tell connection status */
 	.gpio_pullup		= CORGI_GPIO_USB_PULLUP,
 };