Commit 5ff9b906 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: hv: hv_mouse: fix up camelcase fields in struct mousevsc_prt_msg

Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: K. Y. Srinivasan <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e7de0adf
...@@ -157,9 +157,9 @@ struct mousevsc_prt_msg { ...@@ -157,9 +157,9 @@ struct mousevsc_prt_msg {
enum pipe_prot_msg_type type; enum pipe_prot_msg_type type;
u32 size; u32 size;
union { union {
struct synthhid_protocol_request Request; struct synthhid_protocol_request request;
struct synthhid_protocol_response Response; struct synthhid_protocol_response response;
struct synthhid_device_info_ack Ack; struct synthhid_device_info_ack ack;
}; };
}; };
...@@ -385,9 +385,9 @@ static void MousevscOnReceiveDeviceInfo(struct mousevsc_dev *InputDevice, struct ...@@ -385,9 +385,9 @@ static void MousevscOnReceiveDeviceInfo(struct mousevsc_dev *InputDevice, struct
ack.type = PipeMessageData; ack.type = PipeMessageData;
ack.size = sizeof(struct synthhid_device_info_ack); ack.size = sizeof(struct synthhid_device_info_ack);
ack.Ack.header.type = SynthHidInitialDeviceInfoAck; ack.ack.header.type = SynthHidInitialDeviceInfoAck;
ack.Ack.header.size = 1; ack.ack.header.size = 1;
ack.Ack.reserved = 0; ack.ack.reserved = 0;
ret = vmbus_sendpacket(InputDevice->Device->channel, ret = vmbus_sendpacket(InputDevice->Device->channel,
&ack, &ack,
...@@ -610,9 +610,9 @@ static int MousevscConnectToVsp(struct hv_device *Device) ...@@ -610,9 +610,9 @@ static int MousevscConnectToVsp(struct hv_device *Device)
request->type = PipeMessageData; request->type = PipeMessageData;
request->size = sizeof(struct synthhid_protocol_request); request->size = sizeof(struct synthhid_protocol_request);
request->Request.header.type = SynthHidProtocolRequest; request->request.header.type = SynthHidProtocolRequest;
request->Request.header.size = sizeof(unsigned long); request->request.header.size = sizeof(unsigned long);
request->Request.version_requested.version = SYNTHHID_INPUT_VERSION; request->request.version_requested.version = SYNTHHID_INPUT_VERSION;
pr_info("synthhid protocol request..."); pr_info("synthhid protocol request...");
...@@ -637,7 +637,7 @@ static int MousevscConnectToVsp(struct hv_device *Device) ...@@ -637,7 +637,7 @@ static int MousevscConnectToVsp(struct hv_device *Device)
response = &inputDevice->ProtocolResp; response = &inputDevice->ProtocolResp;
if (!response->Response.approved) { if (!response->response.approved) {
pr_err("synthhid protocol request failed (version %d)", pr_err("synthhid protocol request failed (version %d)",
SYNTHHID_INPUT_VERSION); SYNTHHID_INPUT_VERSION);
ret = -1; ret = -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment