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