summaryrefslogtreecommitdiffstats
path: root/board/ti/dra7xx
diff options
context:
space:
mode:
authorKishon Vijay Abraham I <kishon@ti.com>2015-02-23 18:40:23 +0530
committerMarek Vasut <marex@denx.de>2015-04-14 05:48:11 +0200
commit2d48aa69bd2e0164a22b253733564701ed3381a1 (patch)
tree82b4ea7b3a45893b5dee50d02e3ee59c5363e84c /board/ti/dra7xx
parenta69e2c225d152cb91d7d279eb8107f26a9938e51 (diff)
downloadblackbird-obmc-uboot-2d48aa69bd2e0164a22b253733564701ed3381a1.tar.gz
blackbird-obmc-uboot-2d48aa69bd2e0164a22b253733564701ed3381a1.zip
usb: modify usb_gadget_handle_interrupts to take controller index
Since we support multiple dwc3 controllers to be existent at the same time, in order to handle the interrupts of a particular dwc3 controller usb_gadget_handle_interrutps should take controller index as an argument. Hence the API of usb_gadget_handle_interrupts is modified to take controller index as an argument and made the corresponding changes to all the usb_gadget_handle_interrupts calls. Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
Diffstat (limited to 'board/ti/dra7xx')
-rw-r--r--board/ti/dra7xx/evm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c
index 284775ca9f..3089fa2334 100644
--- a/board/ti/dra7xx/evm.c
+++ b/board/ti/dra7xx/evm.c
@@ -220,13 +220,13 @@ int board_usb_cleanup(int index, enum usb_init_type init)
return 0;
}
-int usb_gadget_handle_interrupts(void)
+int usb_gadget_handle_interrupts(int index)
{
u32 status;
- status = dwc3_omap_uboot_interrupt_status(0);
+ status = dwc3_omap_uboot_interrupt_status(index);
if (status)
- dwc3_uboot_handle_interrupt(0);
+ dwc3_uboot_handle_interrupt(index);
return 0;
}
OpenPOWER on IntegriCloud