aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2011-03-16 21:40:59 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-04-05 00:33:24 -0400
commit75e4fb221babbe329c1aba8c34092d29034f1545 (patch)
tree764badb19c87bf9e8f08573bf2d684a5924c4176 /drivers
parent0ce790e7d736cedc563e1fb4e998babf5a4dbc3d (diff)
staging: hv: fix reversed memset arguments in hv_mouse
size is 3rd arg, not the 2nd. Signed-off-by: Dave Jones <davej@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/hv/hv_mouse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c
index 50147f84741..cbe56861685 100644
--- a/drivers/staging/hv/hv_mouse.c
+++ b/drivers/staging/hv/hv_mouse.c
@@ -374,7 +374,7 @@ static void MousevscOnReceiveDeviceInfo(struct mousevsc_dev *InputDevice, struct
374 desc->desc[0].wDescriptorLength); 374 desc->desc[0].wDescriptorLength);
375 375
376 /* Send the ack */ 376 /* Send the ack */
377 memset(&ack, sizeof(struct mousevsc_prt_msg), 0); 377 memset(&ack, 0, sizeof(struct mousevsc_prt_msg));
378 378
379 ack.type = PipeMessageData; 379 ack.type = PipeMessageData;
380 ack.size = sizeof(struct synthhid_device_info_ack); 380 ack.size = sizeof(struct synthhid_device_info_ack);
@@ -595,7 +595,7 @@ static int MousevscConnectToVsp(struct hv_device *Device)
595 /* 595 /*
596 * Now, initiate the vsc/vsp initialization protocol on the open channel 596 * Now, initiate the vsc/vsp initialization protocol on the open channel
597 */ 597 */
598 memset(request, sizeof(struct mousevsc_prt_msg), 0); 598 memset(request, 0, sizeof(struct mousevsc_prt_msg));
599 599
600 request->type = PipeMessageData; 600 request->type = PipeMessageData;
601 request->size = sizeof(struct synthhid_protocol_request); 601 request->size = sizeof(struct synthhid_protocol_request);