Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 487ae7cd authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman
Browse files

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: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent d87d707d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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: