11d4a0b6cSLukasz Majewski /* 21d4a0b6cSLukasz Majewski * Copyright (C) 2012 Samsung Electronics 31d4a0b6cSLukasz Majewski * Lukasz Majewski <l.majewski@samsung.com> 41d4a0b6cSLukasz Majewski * 51d4a0b6cSLukasz Majewski * This program is free software; you can redistribute it and/or 61d4a0b6cSLukasz Majewski * modify it under the terms of the GNU General Public License as 71d4a0b6cSLukasz Majewski * published by the Free Software Foundation; either version 2 of 81d4a0b6cSLukasz Majewski * the License, or (at your option) any later version. 91d4a0b6cSLukasz Majewski * 101d4a0b6cSLukasz Majewski * This program is distributed in the hope that it will be useful, 111d4a0b6cSLukasz Majewski * but WITHOUT ANY WARRANTY; without even the implied warranty of 121d4a0b6cSLukasz Majewski * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 131d4a0b6cSLukasz Majewski * GNU General Public License for more details. 141d4a0b6cSLukasz Majewski * 151d4a0b6cSLukasz Majewski * You should have received a copy of the GNU General Public License 161d4a0b6cSLukasz Majewski * along with this program; if not, write to the Free Software 171d4a0b6cSLukasz Majewski * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 181d4a0b6cSLukasz Majewski * MA 02111-1307 USA 191d4a0b6cSLukasz Majewski */ 201d4a0b6cSLukasz Majewski 211d4a0b6cSLukasz Majewski #ifndef __G_DOWNLOAD_H_ 221d4a0b6cSLukasz Majewski #define __G_DOWNLOAD_H_ 231d4a0b6cSLukasz Majewski 241d4a0b6cSLukasz Majewski #include <linux/usb/ch9.h> 251d4a0b6cSLukasz Majewski #include <linux/usb/gadget.h> 26*c5398cc9SHeiko Schocher int g_dnl_bind_fixup(struct usb_device_descriptor *); 271d4a0b6cSLukasz Majewski int g_dnl_register(const char *s); 281d4a0b6cSLukasz Majewski void g_dnl_unregister(void); 291d4a0b6cSLukasz Majewski 301d4a0b6cSLukasz Majewski /* USB initialization declaration - board specific */ 311d4a0b6cSLukasz Majewski void board_usb_init(void); 321d4a0b6cSLukasz Majewski #endif /* __G_DOWNLOAD_H_ */ 33