Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236246
b: refs/heads/master
c: 32ad38f
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Mar 3, 2011
1 parent 867e44f commit 07d9b19
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c9246c9022095d278082cae4e82312e69453769e
refs/heads/master: 32ad38f7d529c31566533bb9433b8d1bf1a04ec1
20 changes: 9 additions & 11 deletions trunk/drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,8 @@ enum synthhid_msg_type {
* Basic message structures.
*/
struct synthhid_msg_hdr {
enum synthhid_msg_type Type; /* Type of the enclosed message */
u32 Size; /* Size of the enclosed message
* (size of the data payload)
*/
enum synthhid_msg_type type;
u32 size;
};

struct synthhid_msg {
Expand Down Expand Up @@ -388,8 +386,8 @@ static void MousevscOnReceiveDeviceInfo(struct mousevsc_dev *InputDevice, struct
ack.PacketType = PipeMessageData;
ack.DataSize = sizeof(struct synthhid_device_info_ack);

ack.u.Ack.Header.Type = SynthHidInitialDeviceInfoAck;
ack.u.Ack.Header.Size = 1;
ack.u.Ack.Header.type = SynthHidInitialDeviceInfoAck;
ack.u.Ack.Header.size = 1;
ack.u.Ack.Reserved = 0;

ret = vmbus_sendpacket(InputDevice->Device->channel,
Expand Down Expand Up @@ -439,7 +437,7 @@ static void MousevscOnReceiveInputReport(struct mousevsc_dev *InputDevice, struc

inputreport_callback(InputDevice->Device,
InputReport->ReportBuffer,
InputReport->Header.Size);
InputReport->Header.size);
}

static void MousevscOnReceive(struct hv_device *Device, struct vmpacket_descriptor *Packet)
Expand All @@ -465,7 +463,7 @@ static void MousevscOnReceive(struct hv_device *Device, struct vmpacket_descript

hidMsg = (struct synthhid_msg *)&pipeMsg->Data[0];

switch (hidMsg->Header.Type) {
switch (hidMsg->Header.type) {
case SynthHidProtocolResponse:
memcpy(&inputDevice->ProtocolResp, pipeMsg, pipeMsg->DataSize+sizeof(struct pipe_prt_msg) - sizeof(unsigned char));
inputDevice->protocol_wait_condition = 1;
Expand All @@ -489,7 +487,7 @@ static void MousevscOnReceive(struct hv_device *Device, struct vmpacket_descript
break;
default:
pr_err("unsupported hid msg type - type %d len %d",
hidMsg->Header.Type, hidMsg->Header.Size);
hidMsg->Header.type, hidMsg->Header.size);
break;
}

Expand Down Expand Up @@ -611,8 +609,8 @@ static int MousevscConnectToVsp(struct hv_device *Device)
request->PacketType = PipeMessageData;
request->DataSize = sizeof(struct synthhid_protocol_request);

request->u.Request.Header.Type = SynthHidProtocolRequest;
request->u.Request.Header.Size = sizeof(unsigned long);
request->u.Request.Header.type = SynthHidProtocolRequest;
request->u.Request.Header.size = sizeof(unsigned long);
request->u.Request.VersionRequested.AsDWord =
SYNTHHID_INPUT_VERSION_DWORD;

Expand Down

0 comments on commit 07d9b19

Please sign in to comment.