diff options
author | Ravikant Singh <ravikant.singh@stericsson.com> | 2011-09-23 17:25:31 +0530 |
---|---|---|
committer | Jonas ABERG <jonas.aberg@stericsson.com> | 2011-09-23 16:10:51 +0200 |
commit | 27c954661ba573053968c1c899a623ce786cf1c4 (patch) | |
tree | 23319ec0a89eb80749e376844c9206a9ef80414d | |
parent | fa25539335d87abc0e6667f23d3d67af2c15c71a (diff) |
u5500: usb: ISR return type corrected for usb hostu8500-android-2.3_v4.1
return type changed to irqreturn_t from void
for function ab5500_usb_host_disconnect_irq()
ST-Ericsson ID: 352334
ST-Ericsson Linux next: NA
ST-Ericsson FOSS-OUT ID: NA
Signed-off-by: Ravikant Singh <ravikant.singh@stericsson.com>
Signed-off-by: Avinash Kumar <avinash.kumar@stericsson.com>
Change-Id: I85819cb20418fc39e1febb7b1ea1a1211f825fb2
Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/31867
Reviewed-by: Jonas ABERG <jonas.aberg@stericsson.com>
-rw-r--r-- | drivers/usb/otg/ab5500-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/otg/ab5500-usb.c b/drivers/usb/otg/ab5500-usb.c index ed674762616..acd3dcbb739 100644 --- a/drivers/usb/otg/ab5500-usb.c +++ b/drivers/usb/otg/ab5500-usb.c @@ -314,7 +314,7 @@ static irqreturn_t ab5500_usb_device_disconnect_irq(int irq, void *data) * * This function is used to handle the host cable insert work. */ -static void ab5500_usb_host_disconnect_irq(int irq, void *data) +static irqreturn_t ab5500_usb_host_disconnect_irq(int irq, void *data) { struct ab5500_usb *ab = (struct ab5500_usb *) data; /* disable usb chip Select */ |