mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 14:56:54 -04:00
Staging: hv: Fix a jump label (Remove) in blkvsc_drv.c
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d87d707d60
commit
487ae7cd55
@@ -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;
|
||||
@@ -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;
|
||||
@@ -1071,7 +1071,7 @@ static int blkvsc_probe(struct device *device)
|
||||
|
||||
return ret;
|
||||
|
||||
Remove:
|
||||
remove:
|
||||
storvsc_drv_obj->base.dev_rm(device_obj);
|
||||
|
||||
cleanup:
|
||||
|
||||
Reference in New Issue
Block a user