Turns out no one references the data field of this structure, so I
wonder if it's really even needed at all. All this is used for is the
type of the message here, so this structure might be able to be dropped
entirely in the future.
Cc: Hank Janssen <[email protected]>
Cc: K. Y. Srinivasan <[email protected]>
Cc: Haiyang Zhang <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
struct synthhid_msg {
struct synthhid_msg_hdr header;
- char Data[1]; /* Enclosed message */
+ char data[1]; /* Enclosed message */
};
union synthhid_version {