diff options
author | Marek Vasut <marek.vasut+renesas@mailbox.org> | 2024-03-17 05:42:53 +0100 |
---|---|---|
committer | Mattijs Korpershoek <mkorpershoek@baylibre.com> | 2024-04-02 09:08:07 +0200 |
commit | 12ac51cdb788b9f8e50cbc4fa3681102882ade33 (patch) | |
tree | b3b2930be899d65075b5de6d1a026c88c4435cd3 /include | |
parent | 4d158980897085a5b0255ab910208d8afc8522dc (diff) | |
download | u-boot-12ac51cdb788b9f8e50cbc4fa3681102882ade33.zip u-boot-12ac51cdb788b9f8e50cbc4fa3681102882ade33.tar.gz u-boot-12ac51cdb788b9f8e50cbc4fa3681102882ade33.tar.bz2 |
usb: udc: dwc3: Fold dwc3_uboot_handle_interrupt into dm_usb_gadget_handle_interrupts
The only call site of dwc3_uboot_handle_interrupt() is the
dm_usb_gadget_handle_interrupts(), fold the former into the
later. This makes dwc3_uboot_handle_interrupt() unavailable
to be called from board code as well.
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Tested-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> # vim3
Link: https://lore.kernel.org/r/20240317044357.547037-2-marek.vasut+renesas@mailbox.org
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/dwc3-uboot.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/dwc3-uboot.h b/include/dwc3-uboot.h index 5f13f5b..3689d60 100644 --- a/include/dwc3-uboot.h +++ b/include/dwc3-uboot.h @@ -45,7 +45,6 @@ struct dwc3_device { int dwc3_uboot_init(struct dwc3_device *dev); void dwc3_uboot_exit(int index); int dwc3_uboot_interrupt_status(struct udevice *dev); -void dwc3_uboot_handle_interrupt(struct udevice *dev); struct phy; #if CONFIG_IS_ENABLED(PHY) && CONFIG_IS_ENABLED(DM_USB) |