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