aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorK. Y. Srinivasan <[email protected]>2011-05-10 07:56:15 -0700
committerGreg Kroah-Hartman <[email protected]>2011-05-11 13:49:31 -0700
commit8cd442d086512073fd1907c1969a03e7c068c7f9 (patch)
tree2c55cbd595d11c5bbc289a38ff125bf7c01865a2
parentcf131e6ab0332f73ba6a8ff7fd6ac942cba28ccb (diff)
Staging: hv: Get rid of an empty function mouse_vsc_initialize()
Now, get rid of the empty function. Signed-off-by: K. Y. Srinivasan <[email protected]> Signed-off-by: Haiyang Zhang <[email protected]> Signed-off-by: Abhishek Kane <[email protected]> Signed-off-by: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/hv/hv_mouse.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c
index 85b95d8ee2c1..6dc2761f7fc1 100644
--- a/drivers/staging/hv/hv_mouse.c
+++ b/drivers/staging/hv/hv_mouse.c
@@ -977,22 +977,12 @@ static void mousevsc_drv_exit(void)
return;
}
-static int mouse_vsc_initialize(struct hv_driver *driver)
-{
-
- return 0;
-}
-
-
static int __init mousevsc_init(void)
{
- struct mousevsc_drv_obj *input_drv_obj = &mousevsc_drv;
struct hv_driver *drv = &mousevsc_drv.base;
DPRINT_INFO(INPUTVSC_DRV, "Hyper-V Mouse driver initializing.");
- /* Callback to client driver to complete the initialization */
- mouse_vsc_initialize(&input_drv_obj->base);
memcpy(&drv->dev_type, &mouse_guid,
sizeof(struct hv_guid));