ARM64: zynqmp: Fix usb_gadget_handle_interrupt routine
Function is defined in g_dnl.h and have different parameter then it is used. This patch fixes it. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
7f491d7b30
commit
9feff385f8
|
@ -17,6 +17,7 @@
|
||||||
#include <usb.h>
|
#include <usb.h>
|
||||||
#include <dwc3-uboot.h>
|
#include <dwc3-uboot.h>
|
||||||
#include <i2c.h>
|
#include <i2c.h>
|
||||||
|
#include <g_dnl.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
|
@ -297,9 +298,9 @@ static struct dwc3_device dwc3_device_data1 = {
|
||||||
.index = 1,
|
.index = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
int usb_gadget_handle_interrupts(void)
|
int usb_gadget_handle_interrupts(int index)
|
||||||
{
|
{
|
||||||
dwc3_uboot_handle_interrupt(0);
|
dwc3_uboot_handle_interrupt(index);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue