2012-08-06 20:41:05 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Samsung Electronics
|
|
|
|
* Lukasz Majewski <l.majewski@samsung.com>
|
|
|
|
*
|
2013-07-08 15:37:19 +08:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-08-06 20:41:05 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __G_DOWNLOAD_H_
|
|
|
|
#define __G_DOWNLOAD_H_
|
|
|
|
|
|
|
|
#include <linux/usb/ch9.h>
|
|
|
|
#include <linux/usb/gadget.h>
|
2013-10-08 20:30:41 +08:00
|
|
|
int g_dnl_bind_fixup(struct usb_device_descriptor *, const char *);
|
2012-08-06 20:41:05 +08:00
|
|
|
int g_dnl_register(const char *s);
|
|
|
|
void g_dnl_unregister(void);
|
2013-11-04 21:05:01 +08:00
|
|
|
void g_dnl_set_serialnumber(char *);
|
2012-08-06 20:41:05 +08:00
|
|
|
|
|
|
|
#endif /* __G_DOWNLOAD_H_ */
|