提交 d4890970 编写于 作者: K K. Y. Srinivasan 提交者: Greg Kroah-Hartman

Staging: hv: netvsc_drv: Statically initialize probe/remove

Statically initialize probe/remove.
Signed-off-by: NK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: NHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: NAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: NHank Janssen <hjanssen@microsoft.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 f1542a66
...@@ -440,7 +440,10 @@ static int netvsc_drv_exit_cb(struct device *dev, void *data) ...@@ -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)) ...@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册