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>
}
/* 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)
{
drv->driver.name = net_drv_obj->base.name;
- drv->probe = netvsc_probe;
- drv->remove = netvsc_remove;
-
/* The driver belongs to vmbus */
ret = vmbus_child_driver_register(&drv->driver);