summaryrefslogtreecommitdiff
path: root/drivers/staging
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-03-03 03:19:58 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2011-03-03 03:19:58 (GMT)
commit325eae14448a7ce5e2410f61901fd740e6e93f7d (patch)
tree21a60f2cba33a2222ca1f907fdd751988126ddfc /drivers/staging
parent480c28df902b5dd5947950aef39d167b5668d3fe (diff)
downloadlinux-fsl-qoriq-325eae14448a7ce5e2410f61901fd740e6e93f7d.tar.xz
Staging: hv: hv_mouse: clean up camelcase in struct synthhid_protocol_response
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')
-rw-r--r--drivers/staging/hv/hv_mouse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c
index 0f0caf0..98242cf 100644
--- a/drivers/staging/hv/hv_mouse.c
+++ b/drivers/staging/hv/hv_mouse.c
@@ -111,7 +111,7 @@ struct synthhid_protocol_request {
struct synthhid_protocol_response {
struct synthhid_msg_hdr header;
union synthhid_version version_requested;
- unsigned char Approved;
+ unsigned char approved;
};
struct synthhid_device_info {
@@ -635,7 +635,7 @@ static int MousevscConnectToVsp(struct hv_device *Device)
response = &inputDevice->ProtocolResp;
- if (!response->u.Response.Approved) {
+ if (!response->u.Response.approved) {
pr_err("synthhid protocol request failed (version %d)",
SYNTHHID_INPUT_VERSION);
ret = -1;