Skip to content

Commit

Permalink
Staging: hv: mousevsc: Get rid of mousevsc_on_send_completion()
Browse files Browse the repository at this point in the history
We don't need to handle the "send complete" callback - nothing needs to be done
here; get rid of the code.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Oct 4, 2011
1 parent bdbbdb2 commit 1486dd0
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -288,25 +288,6 @@ static struct mousevsc_dev *final_release_input_device(struct hv_device *device)
return input_dev;
}

static void mousevsc_on_send_completion(struct hv_device *device,
struct vmpacket_descriptor *packet)
{
struct mousevsc_dev *input_dev;
void *request;

input_dev = must_get_input_device(device);
if (!input_dev)
return;

request = (void *)(unsigned long)packet->trans_id;

if (request == &input_dev->protocol_req) {
/* FIXME */
/* Shouldn't we be doing something here? */
}

put_input_device(device);
}

static void mousevsc_on_receive_device_info(struct mousevsc_dev *input_device,
struct synthhid_device_info *device_info)
Expand Down Expand Up @@ -480,8 +461,6 @@ static void mousevsc_on_channel_callback(void *context)

switch (desc->type) {
case VM_PKT_COMP:
mousevsc_on_send_completion(
device, desc);
break;

case VM_PKT_DATA_INBAND:
Expand Down

0 comments on commit 1486dd0

Please sign in to comment.