diff options
author | Lukasz Majewski <l.majewski@samsung.com> | 2012-05-04 14:17:07 +0200 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-05-04 15:53:14 +0300 |
commit | 5e891342fd0761fed36c187587115e706c0fa358 (patch) | |
tree | a94c12a830d5d5d71725fbdc65e33c1543043075 /drivers/usb/gadget/s3c-hsotg.c | |
parent | b3546c97c7bb89294fc3da2718b3fabe7ee4c579 (diff) |
usb:hsotg:samsung: Rename s3c_hsotg_disconnect function
The s3c_hsotg_disconnect_irq function has been renamed to
reflect, that it can be used not only during the host
disconnect irq.
The s3c_hsotg_disconnect shall be used as a fall back for
scenario when USB cable is unplugged and plugged to the
device.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/s3c-hsotg.c')
-rw-r--r-- | drivers/usb/gadget/s3c-hsotg.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/usb/gadget/s3c-hsotg.c b/drivers/usb/gadget/s3c-hsotg.c index d0e4fb3bc465..7e3b59106e67 100644 --- a/drivers/usb/gadget/s3c-hsotg.c +++ b/drivers/usb/gadget/s3c-hsotg.c @@ -2086,14 +2086,14 @@ static void kill_all_requests(struct s3c_hsotg *hsotg, (_hs)->driver->_entry(&(_hs)->gadget); /** - * s3c_hsotg_disconnect_irq - disconnect irq service + * s3c_hsotg_disconnect - disconnect service * @hsotg: The device state. * - * A disconnect IRQ has been received, meaning that the host has - * lost contact with the bus. Remove all current transactions - * and signal the gadget driver that this has happened. + * The device has been disconnected. Remove all current + * transactions and signal the gadget driver that this + * has happened. */ -static void s3c_hsotg_disconnect_irq(struct s3c_hsotg *hsotg) +static void s3c_hsotg_disconnect(struct s3c_hsotg *hsotg) { unsigned ep; |