]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: hv: hv_mouse: change camelcase for struct synthhid_msg
authorGreg Kroah-Hartman <gregkh@suse.de>
Thu, 3 Mar 2011 03:11:49 +0000 (19:11 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 3 Mar 2011 03:11:49 +0000 (19:11 -0800)
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>
drivers/staging/hv/hv_mouse.c

index 49c0ad7108164d3fd1f83849d0d47334e463f4d8..a80a15973cca1a0592f1617c11795959f4783383 100644 (file)
@@ -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 {