mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
Staging: hv: netvsc_drv: Make netvsc_drv_init the module init function
Now make netvsc_drv_init the module init function. 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
bb546d0e93
commit
1fde28cffb
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user