summaryrefslogtreecommitdiffstats
path: root/include/usb/fastboot.h
blob: a3609ba5dbe992e60242ef8ebe8b801bc295b48d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _USB_FASTBOOT_H
#define _USB_FASTBOOT_H

#include <usb/composite.h>
#include <fastboot.h>

/**
 * struct f_fastboot_opts - options to configure the fastboot gadget
 * @common:	Options common to all fastboot protocol variants
 * @func_inst:	The USB function instance to register on
 */
struct f_fastboot_opts {
	struct fastboot_opts common;
	struct usb_function_instance func_inst;
};

#endif /* _USB_FASTBOOT_H */