mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-14 14:42:34 -04:00
staging: unisys: visorbus: chipset_init rename goto
Change the goto label "cleanup" to something more useful like out_respond. Signed-off-by: David Kershner <david.kershner@unisys.com> Signed-off-by: Timothy Sell <timothy.sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d79f56b599
commit
5233d1ebb6
@@ -761,7 +761,7 @@ chipset_init(struct controlvm_message *inmsg)
|
||||
POSTCODE_LINUX_2(CHIPSET_INIT_ENTRY_PC, POSTCODE_SEVERITY_INFO);
|
||||
if (chipset_inited) {
|
||||
rc = -CONTROLVM_RESP_ERROR_ALREADY_DONE;
|
||||
goto cleanup;
|
||||
goto out_respond;
|
||||
}
|
||||
chipset_inited = 1;
|
||||
POSTCODE_LINUX_2(CHIPSET_INIT_EXIT_PC, POSTCODE_SEVERITY_INFO);
|
||||
@@ -778,7 +778,7 @@ chipset_init(struct controlvm_message *inmsg)
|
||||
*/
|
||||
features |= ULTRA_CHIPSET_FEATURE_REPLY;
|
||||
|
||||
cleanup:
|
||||
out_respond:
|
||||
if (inmsg->hdr.flags.response_expected)
|
||||
controlvm_respond_chipset_init(&inmsg->hdr, rc, features);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user