Staging: hv: netvsc_drv: Statically initialize probe/remove
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>
This commit is contained in:
parent
f1542a6605
commit
d489097030
1 changed files with 4 additions and 4 deletions
|
@ -440,7 +440,10 @@ static int netvsc_drv_exit_cb(struct device *dev, void *data)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The one and only one */
|
/* The one and only one */
|
||||||
static struct netvsc_driver netvsc_drv;
|
static struct netvsc_driver netvsc_drv = {
|
||||||
|
.base.probe = netvsc_probe,
|
||||||
|
.base.remove = netvsc_remove,
|
||||||
|
};
|
||||||
|
|
||||||
static void netvsc_drv_exit(void)
|
static void netvsc_drv_exit(void)
|
||||||
{
|
{
|
||||||
|
@ -485,9 +488,6 @@ static int netvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
|
||||||
|
|
||||||
drv->driver.name = net_drv_obj->base.name;
|
drv->driver.name = net_drv_obj->base.name;
|
||||||
|
|
||||||
drv->probe = netvsc_probe;
|
|
||||||
drv->remove = netvsc_remove;
|
|
||||||
|
|
||||||
/* The driver belongs to vmbus */
|
/* The driver belongs to vmbus */
|
||||||
ret = vmbus_child_driver_register(&drv->driver);
|
ret = vmbus_child_driver_register(&drv->driver);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue