aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorK. Y. Srinivasan <[email protected]>2011-05-10 07:55:52 -0700
committerGreg Kroah-Hartman <[email protected]>2011-05-11 13:49:20 -0700
commit9528b1d86ac85dcf277fdaa6d8e6d10ad029cfac (patch)
tree67ecaedeab2beba4429727a0eb63d7a9f6ec7a68
parent5457c719ac36dbac1cc88ac59cf9e090acefa70b (diff)
Staging: hv: blkvsc_drv: Move the assignment of driver name
In preperation to eliminating blk_vsc_initialize(), move the assignment of driver name. Signed-off-by: K. Y. Srinivasan <[email protected]> Signed-off-by: Haiyang Zhang <[email protected]> Signed-off-by: Abhishek Kane <[email protected]> Signed-off-by: Hank Janssen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/hv/blkvsc_drv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/hv/blkvsc_drv.c b/drivers/staging/hv/blkvsc_drv.c
index 182a1914a27f..659c4977f9f3 100644
--- a/drivers/staging/hv/blkvsc_drv.c
+++ b/drivers/staging/hv/blkvsc_drv.c
@@ -174,7 +174,6 @@ static int blk_vsc_initialize(struct hv_driver *driver)
stor_driver = hvdr_to_stordr(driver);
- driver->name = drv_name;
memcpy(&driver->dev_type, &dev_type, sizeof(struct hv_guid));
return ret;
@@ -842,6 +841,7 @@ static int blkvsc_drv_init(void)
/* Callback to client driver to complete the initialization */
blk_vsc_initialize(&storvsc_drv->base);
+ drv->name = drv_name;
drv->driver.name = drv_name;
/* The driver belongs to vmbus */