Skip to content

Commit

Permalink
Staging: hv: hv_mouse: change camelcase for struct synthhid_msg
Browse files Browse the repository at this point in the history
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 <hjanssen@microsoft.com>
Cc: K. Y. Srinivasan <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Mar 3, 2011
1 parent c4e68fa commit cb2535a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ struct synthhid_msg_hdr {

struct synthhid_msg {
struct synthhid_msg_hdr header;
char Data[1]; /* Enclosed message */
char data[1]; /* Enclosed message */
};

union synthhid_version {
Expand Down

0 comments on commit cb2535a

Please sign in to comment.