Now make netvsc_drv_init the module init function. Signed-off-by: K. Y. Srinivasan <kys@xxxxxxxxxxxxx> Signed-off-by: Haiyang Zhang <haiyangz@xxxxxxxxxxxxx> Signed-off-by: Abhishek Kane <v-abkane@xxxxxxxxxxxxx> Signed-off-by: Hank Janssen <hjanssen@xxxxxxxxxxxxx> --- drivers/staging/hv/netvsc_drv.c | 9 ++------- 1 files changed, 2 insertions(+), 7 deletions(-) diff --git a/drivers/staging/hv/netvsc_drv.c b/drivers/staging/hv/netvsc_drv.c index 5217021..e690ec8 100644 --- a/drivers/staging/hv/netvsc_drv.c +++ b/drivers/staging/hv/netvsc_drv.c @@ -453,7 +453,7 @@ hv_netvsc_dmi_table[] __maybe_unused = { }; MODULE_DEVICE_TABLE(dmi, hv_netvsc_dmi_table); -static int netvsc_drv_init(void) +static int __init netvsc_drv_init(void) { struct hv_driver *drv = &netvsc_drv; int ret; @@ -475,11 +475,6 @@ static int netvsc_drv_init(void) return ret; } -static int __init netvsc_init(void) -{ - return netvsc_drv_init(); -} - static void __exit netvsc_exit(void) { netvsc_drv_exit(); @@ -496,5 +491,5 @@ MODULE_LICENSE("GPL"); MODULE_VERSION(HV_DRV_VERSION); MODULE_DESCRIPTION("Microsoft Hyper-V network driver"); -module_init(netvsc_init); +module_init(netvsc_drv_init); module_exit(netvsc_exit); -- 1.7.4.1 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/devel