Skip to content

Commit

Permalink
Staging: hv: Change the name of blkvsc driver variable
Browse files Browse the repository at this point in the history
Rename the variable g_blkvsc_drv.

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 11, 2011
1 parent 2e79505 commit d45f62d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/hv/blkvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ static void blkvsc_request(struct request_queue *queue)


/* The one and only one */
static struct storvsc_driver g_blkvsc_drv;
static struct storvsc_driver blkvsc_drv;

static const struct block_device_operations block_ops = {
.owner = THIS_MODULE,
Expand All @@ -867,8 +867,8 @@ static const struct block_device_operations block_ops = {
*/
static int blkvsc_drv_init(void)
{
struct storvsc_driver *storvsc_drv_obj = &g_blkvsc_drv;
struct hv_driver *drv = &g_blkvsc_drv.base;
struct storvsc_driver *storvsc_drv_obj = &blkvsc_drv;
struct hv_driver *drv = &blkvsc_drv.base;
int ret;

storvsc_drv_obj->ring_buffer_size = blkvsc_ringbuffer_size;
Expand Down Expand Up @@ -897,8 +897,8 @@ static int blkvsc_drv_exit_cb(struct device *dev, void *data)

static void blkvsc_drv_exit(void)
{
struct storvsc_driver *storvsc_drv_obj = &g_blkvsc_drv;
struct hv_driver *drv = &g_blkvsc_drv.base;
struct storvsc_driver *storvsc_drv_obj = &blkvsc_drv;
struct hv_driver *drv = &blkvsc_drv.base;
struct device *current_dev;
int ret;

Expand Down

0 comments on commit d45f62d

Please sign in to comment.