From 34e5998921fdc55e981b4039eb3ccac8ddf6d05f Mon Sep 17 00:00:00 2001 From: John Crispin Date: Sun, 13 Feb 2011 16:01:07 +0000 Subject: * fixes dwc_otg init when power gpio is set to -1 SVN-Revision: 25521 --- target/linux/lantiq/patches/700-dwc_otg.patch | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'target') diff --git a/target/linux/lantiq/patches/700-dwc_otg.patch b/target/linux/lantiq/patches/700-dwc_otg.patch index 71931555fe..f663062047 100644 --- a/target/linux/lantiq/patches/700-dwc_otg.patch +++ b/target/linux/lantiq/patches/700-dwc_otg.patch @@ -6335,16 +6335,16 @@ +static int __devinit +dwc_otg_driver_probe(struct platform_device *_dev) +{ -+ int retval = 0; -+ dwc_otg_device_t *dwc_otg_device; -+ int32_t snpsid; ++ int retval = 0; ++ dwc_otg_device_t *dwc_otg_device; ++ int pin = (int)_dev->dev.platform_data; ++ int32_t snpsid; + struct resource *res; + gusbcfg_data_t usbcfg = {.d32 = 0}; + + // GPIOs -+ if(_dev->dev.platform_data >= 0) ++ if(pin >= 0) + { -+ int pin = (int)_dev->dev.platform_data; + gpio_request(pin, "usb_power"); + gpio_direction_output(pin, 1); + gpio_set_value(pin, 1); -- cgit v1.2.3