diff options
author | Sergiy Kibrik <sakib@meta.ua> | 2015-05-16 16:55:03 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-05-26 10:15:02 -0500 |
commit | 10f095801cda5cdf24839e2fe90c08cb85a28da6 (patch) | |
tree | 028f60f5f2f02b3551db20c545f9944ba31b87d4 | |
parent | 459e210c4fd034d20077bcec31fec9472a700fe9 (diff) | |
download | op-kernel-dev-10f095801cda5cdf24839e2fe90c08cb85a28da6.zip op-kernel-dev-10f095801cda5cdf24839e2fe90c08cb85a28da6.tar.gz |
usb: s3c2410_udc: correct reversed pullup logic
For some reason the code has always been disabling pullup
when asked to do the opposite. According to surrounding code
and gadget API this seems to be a mistake. This fix allows
UDC to be detected by host controller on recent kernels.
Signed-off-by: Sergiy Kibrik <sakib@meta.ua>
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/gadget/udc/s3c2410_udc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/udc/s3c2410_udc.c b/drivers/usb/gadget/udc/s3c2410_udc.c index b808951..99fd9a5 100644 --- a/drivers/usb/gadget/udc/s3c2410_udc.c +++ b/drivers/usb/gadget/udc/s3c2410_udc.c @@ -1487,7 +1487,7 @@ static int s3c2410_udc_pullup(struct usb_gadget *gadget, int is_on) dprintk(DEBUG_NORMAL, "%s()\n", __func__); - s3c2410_udc_set_pullup(udc, is_on ? 0 : 1); + s3c2410_udc_set_pullup(udc, is_on); return 0; } |