diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2015-02-23 18:40:09 +0530 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-04-14 05:48:10 +0200 |
commit | c241d7eee43e2cd5dedc9b4c16f91559daabc750 (patch) | |
tree | f30fb394c79c371d5ab7909949b0bd8f2e9715aa /include/dwc3-omap-uboot.h | |
parent | 93c3763810670a8feedcf097be09f264839d368c (diff) |
usb: dwc3: dwc3-omap: change probe and remove to uboot init and uboot exit code
Removed probe and remove that are specific to linux and replaced it with
uboot init and uboot exit. These functions will be invoked from boardfile.
This will change once we have dwc3-omap driver adapted to use the uboot
driver model.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
Diffstat (limited to 'include/dwc3-omap-uboot.h')
-rw-r--r-- | include/dwc3-omap-uboot.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/dwc3-omap-uboot.h b/include/dwc3-omap-uboot.h index b313b644392..99f8f38f22c 100644 --- a/include/dwc3-omap-uboot.h +++ b/include/dwc3-omap-uboot.h @@ -24,4 +24,7 @@ struct dwc3_omap_device { enum dwc3_omap_utmi_mode utmi_mode; enum omap_dwc3_vbus_id_status vbus_id_status; }; + +int dwc3_omap_uboot_init(struct dwc3_omap_device *dev); +void dwc3_omap_uboot_exit(void); #endif /* __DWC3_OMAP_UBOOT_H_ */ |