configfs.h 514 字节
Newer Older
1 2 3
#ifndef USB__GADGET__CONFIGFS__H
#define USB__GADGET__CONFIGFS__H

4 5
#include <linux/configfs.h>

6 7
void unregister_gadget_item(struct config_item *item);

8 9 10 11 12 13
struct config_group *usb_os_desc_prepare_interf_dir(
		struct config_group *parent,
		int n_interf,
		struct usb_os_desc **desc,
		char **names,
		struct module *owner);
14 15 16 17 18 19

static inline struct usb_os_desc *to_usb_os_desc(struct config_item *item)
{
	return container_of(to_config_group(item), struct usb_os_desc, group);
}

20
#endif /*  USB__GADGET__CONFIGFS__H */