Skip to content

Commit

Permalink
Staging: hv: mousevsc: Cleanup mousevsc_on_device_add()
Browse files Browse the repository at this point in the history
Cleanup  mousevsc_on_device_add().

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 6e56f27 commit 929ad79
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,12 +513,10 @@ static void reportdesc_callback(struct hv_device *dev, void *packet, u32 len)
input_device->hid_device = hid_dev;
}

static int mousevsc_on_device_add(struct hv_device *device,
void *additional_info)
static int mousevsc_on_device_add(struct hv_device *device)
{
int ret = 0;
struct mousevsc_dev *input_dev;
struct hv_driver *input_drv;

input_dev = alloc_input_device(device);

Expand Down Expand Up @@ -551,9 +549,6 @@ static int mousevsc_on_device_add(struct hv_device *device,
return ret;
}

input_drv = drv_to_hv_drv(input_dev->device->device.driver);



/* Send the report desc back up */
/* workaround SA-167 */
Expand All @@ -573,7 +568,7 @@ static int mousevsc_probe(struct hv_device *dev,
{

/* Call to the vsc driver to add the device */
return mousevsc_on_device_add(dev, NULL);
return mousevsc_on_device_add(dev);

}

Expand Down

0 comments on commit 929ad79

Please sign in to comment.