aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/hv
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-03-02 19:11:49 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-02 19:11:49 -0800
commitcb2535ad49972ab2ef3c872958bcd20b9532a308 (patch)
tree91b171e38bd17339ad3a830537225fae9f56a716 /drivers/staging/hv
parentc4e68fa9537cb8190ba542a93558730783e49cdf (diff)
Staging: hv: hv_mouse: change camelcase for struct synthhid_msg
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>
Diffstat (limited to 'drivers/staging/hv')
-rw-r--r--drivers/staging/hv/hv_mouse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c
index 49c0ad71081..a80a15973cc 100644
--- a/drivers/staging/hv/hv_mouse.c
+++ b/drivers/staging/hv/hv_mouse.c
@@ -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 {