Skip to content

Commit

Permalink
Staging: hv: netvsc_drv: Change the signature of netvsc_drv_init()
Browse files Browse the repository at this point in the history
Change the signature of netvsc_drv_init().

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>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed May 17, 2011
1 parent 4753ff6 commit 073aad3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/hv/netvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,13 +453,13 @@ hv_netvsc_dmi_table[] __maybe_unused = {
};
MODULE_DEVICE_TABLE(dmi, hv_netvsc_dmi_table);

static int netvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
static int netvsc_drv_init(void)
{
struct hv_driver *drv = &netvsc_drv;
int ret;

/* Callback to client driver to complete the initialization */
drv_init(drv);
netvsc_initialize(drv);

drv->driver.name = drv->name;

Expand All @@ -476,7 +476,7 @@ static int __init netvsc_init(void)
if (!dmi_check_system(hv_netvsc_dmi_table))
return -ENODEV;

return netvsc_drv_init(netvsc_initialize);
return netvsc_drv_init();
}

static void __exit netvsc_exit(void)
Expand Down

0 comments on commit 073aad3

Please sign in to comment.