https://github.com/torvalds/linux
Raw File
Tip revision: c9c3395d5e3dcc6daee66c6908354d47bf98cb0c authored by Linus Torvalds on 19 February 2023, 22:24:22 UTC
Linux 6.2
Tip revision: c9c3395
g_hid.h
// SPDX-License-Identifier: GPL-2.0+
/*
 * g_hid.h -- Header file for USB HID gadget driver
 *
 * Copyright (C) 2010 Fabien Chouteau <fabien.chouteau@barco.com>
 */

#ifndef __LINUX_USB_G_HID_H
#define __LINUX_USB_G_HID_H

struct hidg_func_descriptor {
	unsigned char		subclass;
	unsigned char		protocol;
	unsigned short		report_length;
	unsigned short		report_desc_length;
	unsigned char		report_desc[];
};

#endif /* __LINUX_USB_G_HID_H */
back to top