Commit 6ed10de1 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: hv: hv_mouse: fix camelcase in struct synthhid_device_info_ack

Just one field to fix up, s/Reserved/reserved/g
Odd that we have to set the reserved field to 0 when we send the
message, that would imply that it really isn't "reserved"...

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 18bc44e3
...@@ -122,7 +122,7 @@ struct synthhid_device_info { ...@@ -122,7 +122,7 @@ struct synthhid_device_info {
struct synthhid_device_info_ack { struct synthhid_device_info_ack {
struct synthhid_msg_hdr header; struct synthhid_msg_hdr header;
unsigned char Reserved; unsigned char reserved;
}; };
struct synthhid_input_report { struct synthhid_input_report {
...@@ -387,7 +387,7 @@ static void MousevscOnReceiveDeviceInfo(struct mousevsc_dev *InputDevice, struct ...@@ -387,7 +387,7 @@ static void MousevscOnReceiveDeviceInfo(struct mousevsc_dev *InputDevice, struct
ack.u.Ack.header.type = SynthHidInitialDeviceInfoAck; ack.u.Ack.header.type = SynthHidInitialDeviceInfoAck;
ack.u.Ack.header.size = 1; ack.u.Ack.header.size = 1;
ack.u.Ack.Reserved = 0; ack.u.Ack.reserved = 0;
ret = vmbus_sendpacket(InputDevice->Device->channel, ret = vmbus_sendpacket(InputDevice->Device->channel,
&ack, &ack,
......
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