Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 236259
b: refs/heads/master
c: e7de0ad
h: refs/heads/master
i:
  236257: a6620c5
  236255: c7ca0c6
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Mar 3, 2011
1 parent 1706999 commit c3f4dcc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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: 9877fa4445b907b8aa271783e3e5ee99a143b65c
refs/heads/master: e7de0adf89c2f8a36f839b9dfc98b91239f5a3d5
8 changes: 4 additions & 4 deletions trunk/drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ enum pipe_prot_msg_type {
struct pipe_prt_msg {
enum pipe_prot_msg_type type;
u32 size;
char Data[1];
char data[1];
};

/*
Expand Down Expand Up @@ -460,7 +460,7 @@ static void MousevscOnReceive(struct hv_device *Device, struct vmpacket_descript
return ;
}

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

switch (hidMsg->header.type) {
case SynthHidProtocolResponse:
Expand All @@ -479,11 +479,11 @@ static void MousevscOnReceive(struct hv_device *Device, struct vmpacket_descript
* hid desc and report desc
*/
MousevscOnReceiveDeviceInfo(inputDevice,
(struct synthhid_device_info *)&pipeMsg->Data[0]);
(struct synthhid_device_info *)&pipeMsg->data[0]);
break;
case SynthHidInputReport:
MousevscOnReceiveInputReport(inputDevice,
(struct synthhid_input_report *)&pipeMsg->Data[0]);
(struct synthhid_input_report *)&pipeMsg->data[0]);

break;
default:
Expand Down

0 comments on commit c3f4dcc

Please sign in to comment.