Commit 7e7f0c55 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman

Staging: hv: blkvsc_drv: Statically initialize pointers for probe etc

Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 7b317799
...@@ -841,7 +841,11 @@ static void blkvsc_request(struct request_queue *queue) ...@@ -841,7 +841,11 @@ static void blkvsc_request(struct request_queue *queue)
/* The one and only one */ /* The one and only one */
static struct storvsc_driver blkvsc_drv; static struct storvsc_driver blkvsc_drv = {
.base.probe = blkvsc_probe,
.base.remove = blkvsc_remove,
.base.shutdown = blkvsc_shutdown,
};
static const struct block_device_operations block_ops = { static const struct block_device_operations block_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
...@@ -867,10 +871,6 @@ static int blkvsc_drv_init(void) ...@@ -867,10 +871,6 @@ static int blkvsc_drv_init(void)
drv->driver.name = storvsc_drv->base.name; drv->driver.name = storvsc_drv->base.name;
drv->probe = blkvsc_probe;
drv->remove = blkvsc_remove;
drv->shutdown = blkvsc_shutdown;
/* The driver belongs to vmbus */ /* The driver belongs to vmbus */
ret = vmbus_child_driver_register(&drv->driver); ret = vmbus_child_driver_register(&drv->driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment