staging: unisys: fix Camelcase Away goto label
Rename the label in both places: Away => cleanup Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
38f736e974
commit
e3199b2e3c
1 changed files with 2 additions and 2 deletions
|
@ -621,7 +621,7 @@ chipset_init(struct controlvm_message *inmsg)
|
||||||
POSTCODE_LINUX_2(CHIPSET_INIT_ENTRY_PC, POSTCODE_SEVERITY_INFO);
|
POSTCODE_LINUX_2(CHIPSET_INIT_ENTRY_PC, POSTCODE_SEVERITY_INFO);
|
||||||
if (chipset_inited) {
|
if (chipset_inited) {
|
||||||
rc = -CONTROLVM_RESP_ERROR_ALREADY_DONE;
|
rc = -CONTROLVM_RESP_ERROR_ALREADY_DONE;
|
||||||
goto Away;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
chipset_inited = 1;
|
chipset_inited = 1;
|
||||||
POSTCODE_LINUX_2(CHIPSET_INIT_EXIT_PC, POSTCODE_SEVERITY_INFO);
|
POSTCODE_LINUX_2(CHIPSET_INIT_EXIT_PC, POSTCODE_SEVERITY_INFO);
|
||||||
|
@ -636,7 +636,7 @@ chipset_init(struct controlvm_message *inmsg)
|
||||||
* features-aware driver. */
|
* features-aware driver. */
|
||||||
features |= ULTRA_CHIPSET_FEATURE_REPLY;
|
features |= ULTRA_CHIPSET_FEATURE_REPLY;
|
||||||
|
|
||||||
Away:
|
cleanup:
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
cleanup_controlvm_structures();
|
cleanup_controlvm_structures();
|
||||||
if (inmsg->hdr.flags.response_expected)
|
if (inmsg->hdr.flags.response_expected)
|
||||||
|
|
Loading…
Add table
Reference in a new issue