Skip to content

Commit

Permalink
Staging: hv: mousevsc_drv: Statically initialize probe/remove
Browse files Browse the repository at this point in the history
Statically initialize probe/remove.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Abhishek Kane <v-abkane@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed May 11, 2011
1 parent eebdd6f commit 1745ec5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/hv/hv_mouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,10 @@ static int mousevsc_drv_exit_cb(struct device *dev, void *data)
return 1;
}

static struct mousevsc_drv_obj mousevsc_drv;
static struct mousevsc_drv_obj mousevsc_drv = {
.base.probe = mousevsc_probe,
.base.remove = mousevsc_remove,
};

static void mousevsc_drv_exit(void)
{
Expand Down Expand Up @@ -996,9 +999,6 @@ static int __init mousevsc_init(void)

drv->driver.name = input_drv_obj->base.name;

drv->probe = mousevsc_probe;
drv->remove = mousevsc_remove;

/* The driver belongs to vmbus */
vmbus_child_driver_register(&drv->driver);

Expand Down

0 comments on commit 1745ec5

Please sign in to comment.