[PATCH 55/64] Staging: hv: netvsc_drv: Make netvsc_drv an instance of struct hv_driver
K. Y. Srinivasan
kys at microsoft.com
Thu May 12 19:35:08 PDT 2011
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 at microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz at microsoft.com>
Signed-off-by: Abhishek Kane <v-abkane at microsoft.com>
Signed-off-by: Hank Janssen <hjanssen at microsoft.com>
---
drivers/staging/hv/netvsc_drv.c | 15 +++++++--------
1 files changed, 7 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/hv/netvsc_drv.c b/drivers/staging/hv/netvsc_drv.c
index 950a456..d3b6148 100644
--- a/drivers/staging/hv/netvsc_drv.c
+++ b/drivers/staging/hv/netvsc_drv.c
@@ -428,26 +428,25 @@ static int netvsc_remove(struct hv_device *dev)
}
/* The one and only one */
-static struct netvsc_driver netvsc_drv = {
- .base.probe = netvsc_probe,
- .base.remove = netvsc_remove,
+static struct hv_driver netvsc_drv = {
+ .probe = netvsc_probe,
+ .remove = netvsc_remove,
};
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))
{
- struct netvsc_driver *net_drv_obj = &netvsc_drv;
- struct hv_driver *drv = &netvsc_drv.base;
+ struct hv_driver *drv = &netvsc_drv;
int ret;
/* 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 */
ret = vmbus_child_driver_register(&drv->driver);
--
1.7.4.1
More information about the devel
mailing list