Staging: hv: netvsc_drv: Make netvsc_drv an instance of struct hv_driver
In preparation to getting rid of struct netvsc_driver, make the variable netvsc_drv an instance of struct hv_driver. 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
4e3cba6b4c
commit
fde0ef9b23
|
@ -428,26 +428,25 @@ static int netvsc_remove(struct hv_device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The one and only one */
|
/* The one and only one */
|
||||||
static struct netvsc_driver netvsc_drv = {
|
static struct hv_driver netvsc_drv = {
|
||||||
.base.probe = netvsc_probe,
|
.probe = netvsc_probe,
|
||||||
.base.remove = netvsc_remove,
|
.remove = netvsc_remove,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void netvsc_drv_exit(void)
|
static void netvsc_drv_exit(void)
|
||||||
{
|
{
|
||||||
vmbus_child_driver_unregister(&netvsc_drv.base.driver);
|
vmbus_child_driver_unregister(&netvsc_drv.driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int netvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
|
static int netvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
|
||||||
{
|
{
|
||||||
struct netvsc_driver *net_drv_obj = &netvsc_drv;
|
struct hv_driver *drv = &netvsc_drv;
|
||||||
struct hv_driver *drv = &netvsc_drv.base;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/* Callback to client driver to complete the initialization */
|
/* Callback to client driver to complete the initialization */
|
||||||
drv_init(&net_drv_obj->base);
|
drv_init(drv);
|
||||||
|
|
||||||
drv->driver.name = net_drv_obj->base.name;
|
drv->driver.name = drv->name;
|
||||||
|
|
||||||
/* 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…
Reference in New Issue