Skip to content

Commit

Permalink
Staging: hv: Cleanup initialization of blkvsc driver
Browse files Browse the repository at this point in the history
Cleanup the initialization sequence for the block driver.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@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 Apr 5, 2011
1 parent 86762a5 commit 834702f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/hv/blkvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ static int blk_vsc_on_device_add(struct hv_device *device,
}


int blk_vsc_initialize(struct hv_driver *driver)
static int blk_vsc_initialize(struct hv_driver *driver)
{
struct storvsc_driver_object *stor_driver;
int ret = 0;
Expand Down Expand Up @@ -244,7 +244,7 @@ static const struct block_device_operations block_ops = {
/*
* blkvsc_drv_init - BlkVsc driver initialization.
*/
static int blkvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
static int blkvsc_drv_init(void)
{
struct storvsc_driver_object *storvsc_drv_obj = &g_blkvsc_drv;
struct hv_driver *drv = &g_blkvsc_drv.base;
Expand All @@ -255,7 +255,7 @@ static int blkvsc_drv_init(int (*drv_init)(struct hv_driver *drv))
drv->priv = storvsc_drv_obj;

/* Callback to client driver to complete the initialization */
drv_init(&storvsc_drv_obj->base);
blk_vsc_initialize(&storvsc_drv_obj->base);

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

Expand Down Expand Up @@ -1555,7 +1555,7 @@ static int __init blkvsc_init(void)

DPRINT_INFO(BLKVSC_DRV, "Blkvsc initializing....");

ret = blkvsc_drv_init(blk_vsc_initialize);
ret = blkvsc_drv_init();

return ret;
}
Expand Down
1 change: 0 additions & 1 deletion drivers/staging/hv/storvsc_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ struct storvsc_device {

/* Interface */
int stor_vsc_on_host_reset(struct hv_device *device);
int blk_vsc_initialize(struct hv_driver *driver);

int stor_vsc_on_device_add(struct hv_device *device,
void *additional_info);
Expand Down

0 comments on commit 834702f

Please sign in to comment.