1 /* 2 * Copyright (C) 2012 Samsung Electronics 3 * Lukasz Majewski <l.majewski@samsung.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef __G_DOWNLOAD_H_ 9 #define __G_DOWNLOAD_H_ 10 11 #include <linux/usb/ch9.h> 12 #include <linux/usb/gadget.h> 13 int g_dnl_bind_fixup(struct usb_device_descriptor *); 14 int g_dnl_register(const char *s); 15 void g_dnl_unregister(void); 16 17 /* USB initialization declaration - board specific */ 18 void board_usb_init(void); 19 #endif /* __G_DOWNLOAD_H_ */ 20