Commit a6a3989b authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: fix CamelCase label in visorchipset_init()

Fix the CamelCase label:

Away => cleanup

Update all references to use the fixed name.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e6bdb904
...@@ -2150,7 +2150,7 @@ visorchipset_init(void) ...@@ -2150,7 +2150,7 @@ visorchipset_init(void)
if (visorchipset_testvnic) { if (visorchipset_testvnic) {
POSTCODE_LINUX_3(CHIPSET_INIT_FAILURE_PC, x, DIAG_SEVERITY_ERR); POSTCODE_LINUX_3(CHIPSET_INIT_FAILURE_PC, x, DIAG_SEVERITY_ERR);
rc = x; rc = x;
goto Away; goto cleanup;
} }
addr = controlvm_get_channel_address(); addr = controlvm_get_channel_address();
...@@ -2176,7 +2176,7 @@ visorchipset_init(void) ...@@ -2176,7 +2176,7 @@ visorchipset_init(void)
rc = visorchipset_file_init(MajorDev, &controlvm_channel); rc = visorchipset_file_init(MajorDev, &controlvm_channel);
if (rc < 0) { if (rc < 0) {
POSTCODE_LINUX_2(CHIPSET_INIT_FAILURE_PC, DIAG_SEVERITY_ERR); POSTCODE_LINUX_2(CHIPSET_INIT_FAILURE_PC, DIAG_SEVERITY_ERR);
goto Away; goto cleanup;
} }
memset(&g_diag_msg_hdr, 0, sizeof(struct controlvm_message_header)); memset(&g_diag_msg_hdr, 0, sizeof(struct controlvm_message_header));
...@@ -2192,7 +2192,7 @@ visorchipset_init(void) ...@@ -2192,7 +2192,7 @@ visorchipset_init(void)
if (!Putfile_buffer_list_pool) { if (!Putfile_buffer_list_pool) {
POSTCODE_LINUX_2(CHIPSET_INIT_FAILURE_PC, DIAG_SEVERITY_ERR); POSTCODE_LINUX_2(CHIPSET_INIT_FAILURE_PC, DIAG_SEVERITY_ERR);
rc = -1; rc = -1;
goto Away; goto cleanup;
} }
if (!visorchipset_disable_controlvm) { if (!visorchipset_disable_controlvm) {
/* if booting in a crash kernel */ /* if booting in a crash kernel */
...@@ -2209,7 +2209,7 @@ visorchipset_init(void) ...@@ -2209,7 +2209,7 @@ visorchipset_init(void)
POSTCODE_LINUX_2(CREATE_WORKQUEUE_FAILED_PC, POSTCODE_LINUX_2(CREATE_WORKQUEUE_FAILED_PC,
DIAG_SEVERITY_ERR); DIAG_SEVERITY_ERR);
rc = -ENOMEM; rc = -ENOMEM;
goto Away; goto cleanup;
} }
most_recent_message_jiffies = jiffies; most_recent_message_jiffies = jiffies;
poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_FAST; poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_FAST;
...@@ -2218,7 +2218,7 @@ visorchipset_init(void) ...@@ -2218,7 +2218,7 @@ visorchipset_init(void)
if (rc < 0) { if (rc < 0) {
POSTCODE_LINUX_2(QUEUE_DELAYED_WORK_PC, POSTCODE_LINUX_2(QUEUE_DELAYED_WORK_PC,
DIAG_SEVERITY_ERR); DIAG_SEVERITY_ERR);
goto Away; goto cleanup;
} }
} }
...@@ -2226,11 +2226,11 @@ visorchipset_init(void) ...@@ -2226,11 +2226,11 @@ visorchipset_init(void)
if (platform_device_register(&Visorchipset_platform_device) < 0) { if (platform_device_register(&Visorchipset_platform_device) < 0) {
POSTCODE_LINUX_2(DEVICE_REGISTER_FAILURE_PC, DIAG_SEVERITY_ERR); POSTCODE_LINUX_2(DEVICE_REGISTER_FAILURE_PC, DIAG_SEVERITY_ERR);
rc = -1; rc = -1;
goto Away; goto cleanup;
} }
POSTCODE_LINUX_2(CHIPSET_INIT_SUCCESS_PC, POSTCODE_SEVERITY_INFO); POSTCODE_LINUX_2(CHIPSET_INIT_SUCCESS_PC, POSTCODE_SEVERITY_INFO);
rc = 0; rc = 0;
Away: cleanup:
if (rc) { if (rc) {
POSTCODE_LINUX_3(CHIPSET_INIT_FAILURE_PC, rc, POSTCODE_LINUX_3(CHIPSET_INIT_FAILURE_PC, rc,
POSTCODE_SEVERITY_ERR); POSTCODE_SEVERITY_ERR);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment