1*1d4a0b6cSLukasz Majewski /* 2*1d4a0b6cSLukasz Majewski * Copyright (C) 2012 Samsung Electronics 3*1d4a0b6cSLukasz Majewski * Lukasz Majewski <l.majewski@samsung.com> 4*1d4a0b6cSLukasz Majewski * 5*1d4a0b6cSLukasz Majewski * This program is free software; you can redistribute it and/or 6*1d4a0b6cSLukasz Majewski * modify it under the terms of the GNU General Public License as 7*1d4a0b6cSLukasz Majewski * published by the Free Software Foundation; either version 2 of 8*1d4a0b6cSLukasz Majewski * the License, or (at your option) any later version. 9*1d4a0b6cSLukasz Majewski * 10*1d4a0b6cSLukasz Majewski * This program is distributed in the hope that it will be useful, 11*1d4a0b6cSLukasz Majewski * but WITHOUT ANY WARRANTY; without even the implied warranty of 12*1d4a0b6cSLukasz Majewski * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*1d4a0b6cSLukasz Majewski * GNU General Public License for more details. 14*1d4a0b6cSLukasz Majewski * 15*1d4a0b6cSLukasz Majewski * You should have received a copy of the GNU General Public License 16*1d4a0b6cSLukasz Majewski * along with this program; if not, write to the Free Software 17*1d4a0b6cSLukasz Majewski * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 18*1d4a0b6cSLukasz Majewski * MA 02111-1307 USA 19*1d4a0b6cSLukasz Majewski */ 20*1d4a0b6cSLukasz Majewski 21*1d4a0b6cSLukasz Majewski #ifndef __G_DOWNLOAD_H_ 22*1d4a0b6cSLukasz Majewski #define __G_DOWNLOAD_H_ 23*1d4a0b6cSLukasz Majewski 24*1d4a0b6cSLukasz Majewski #include <linux/usb/ch9.h> 25*1d4a0b6cSLukasz Majewski #include <usbdescriptors.h> 26*1d4a0b6cSLukasz Majewski #include <linux/usb/gadget.h> 27*1d4a0b6cSLukasz Majewski 28*1d4a0b6cSLukasz Majewski int g_dnl_register(const char *s); 29*1d4a0b6cSLukasz Majewski void g_dnl_unregister(void); 30*1d4a0b6cSLukasz Majewski 31*1d4a0b6cSLukasz Majewski /* USB initialization declaration - board specific */ 32*1d4a0b6cSLukasz Majewski void board_usb_init(void); 33*1d4a0b6cSLukasz Majewski #endif /* __G_DOWNLOAD_H_ */ 34