Skip to content

Commit

Permalink
Staging: hv: Fix a jump label (Remove) in blkvsc_drv.c
Browse files Browse the repository at this point in the history
One of the jump labels was named Remove; change it to remove.

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 25, 2011
1 parent d87d707 commit 487ae7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/hv/blkvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ static int blkvsc_probe(struct device *device)
DPRINT_ERR(BLKVSC_DRV,
"register_blkdev() failed! ret %d",
ret);
goto Remove;
goto remove;
}

ide0_registered = 1;
Expand All @@ -1020,7 +1020,7 @@ static int blkvsc_probe(struct device *device)
DPRINT_ERR(BLKVSC_DRV,
"register_blkdev() failed! ret %d",
ret);
goto Remove;
goto remove;
}

ide1_registered = 1;
Expand Down Expand Up @@ -1071,7 +1071,7 @@ static int blkvsc_probe(struct device *device)

return ret;

Remove:
remove:
storvsc_drv_obj->base.dev_rm(device_obj);

cleanup:
Expand Down

0 comments on commit 487ae7c

Please sign in to comment.