mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
3e00a22fdc
All these files have been updated in the commit given in the Fixes: tag below. When the SPDX-License-Identifier: has been added, the corresponding text at the beginning of the files has not been deleted. All these texts are about GPL-2.0+, with different variation in the wording. Remove these now useless lines to save some LoC. Fixes: 5fd54ace4721 ("USB: add SPDX identifiers to all remaining files in drivers/usb/") Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 lines
442 B
C
20 lines
442 B
C
// 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 */
|