Skip to content

Commit

Permalink
Staging: hv: hv_mouse: clean up camelcase in struct synthhid_protocol…
Browse files Browse the repository at this point in the history
…_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>
  • Loading branch information
Greg Kroah-Hartman committed Mar 3, 2011
1 parent 480c28d commit 325eae1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 325eae1

Please sign in to comment.