提交 39ae6fae 编写于 作者: K K. Y. Srinivasan 提交者: Greg Kroah-Hartman

Staging: hv: storvsc_drv: Statically initialize probe/remove elements of the driver

Signed-off-by: NK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: NHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: NAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: NHank Janssen <hjanssen@microsoft.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 7bd05b91
......@@ -872,7 +872,10 @@ static int storvsc_probe(struct hv_device *device)
/* The one and only one */
static struct storvsc_driver storvsc_drv;
static struct storvsc_driver storvsc_drv = {
.base.probe = storvsc_probe,
.base.remove = storvsc_remove,
};
/*
......@@ -899,8 +902,6 @@ static int storvsc_drv_init(void)
drv->driver.name = storvsc_drv_obj->base.name;
drv->probe = storvsc_probe;
drv->remove = storvsc_remove;
/* The driver belongs to vmbus */
ret = vmbus_child_driver_register(&drv->driver);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册