aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-04-02 22:37:23 -0400
committerTom Rini <trini@konsulko.com>2024-04-02 22:37:23 -0400
commitcdfcc37428e06f4730ab9a17cc084eeb7676ea1a (patch)
treec5e0e9ced139a372a222ed46d6c652947f9ec826 /include
parent72b089bcaac5be5c8c570db725cda8cf22154929 (diff)
parent12ac51cdb788b9f8e50cbc4fa3681102882ade33 (diff)
downloadu-boot-cdfcc37428e06f4730ab9a17cc084eeb7676ea1a.zip
u-boot-cdfcc37428e06f4730ab9a17cc084eeb7676ea1a.tar.gz
u-boot-cdfcc37428e06f4730ab9a17cc084eeb7676ea1a.tar.bz2
Merge tag 'u-boot-dfu-next-20240402' of https://source.denx.de/u-boot/custodians/u-boot-dfuWIP/02Apr2024
u-boot-dfu-next-20240402 - Implement Qualcomm wrapper for dwc3 - Multiple sector size support for UMS - CDC ACM gadget initialization fix - Refactor board code from dwc3 to prepare better interrupt support - Bugfix for for qcom-smmu when compiling with -DDEBUG
Diffstat (limited to 'include')
-rw-r--r--include/dwc3-omap-uboot.h1
-rw-r--r--include/dwc3-uboot.h2
-rw-r--r--include/usb_mass_storage.h1
3 files changed, 1 insertions, 3 deletions
diff --git a/include/dwc3-omap-uboot.h b/include/dwc3-omap-uboot.h
index ed92bfc..f220705 100644
--- a/include/dwc3-omap-uboot.h
+++ b/include/dwc3-omap-uboot.h
@@ -27,5 +27,4 @@ struct dwc3_omap_device {
int dwc3_omap_uboot_init(struct dwc3_omap_device *dev);
void dwc3_omap_uboot_exit(int index);
-int dwc3_omap_uboot_interrupt_status(struct udevice *dev);
#endif /* __DWC3_OMAP_UBOOT_H_ */
diff --git a/include/dwc3-uboot.h b/include/dwc3-uboot.h
index 35cfbb9..3689d60 100644
--- a/include/dwc3-uboot.h
+++ b/include/dwc3-uboot.h
@@ -44,7 +44,7 @@ struct dwc3_device {
int dwc3_uboot_init(struct dwc3_device *dev);
void dwc3_uboot_exit(int index);
-void dwc3_uboot_handle_interrupt(struct udevice *dev);
+int dwc3_uboot_interrupt_status(struct udevice *dev);
struct phy;
#if CONFIG_IS_ENABLED(PHY) && CONFIG_IS_ENABLED(DM_USB)
diff --git a/include/usb_mass_storage.h b/include/usb_mass_storage.h
index 83ab93b..6d83d93 100644
--- a/include/usb_mass_storage.h
+++ b/include/usb_mass_storage.h
@@ -7,7 +7,6 @@
#ifndef __USB_MASS_STORAGE_H__
#define __USB_MASS_STORAGE_H__
-#define SECTOR_SIZE 0x200
#include <part.h>
#include <linux/usb/composite.h>