From: Jeffrey <jeffrey.br...@unisys.com>

Fixed the camel cases in the static int initialize_controlvm_
payload_info
Away -> cleanups

Signed-off-by: Jeffrey Brown <jeffrey.br...@unisys.com>
---
 drivers/staging/unisys/visorchipset/visorchipset_main.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c 
b/drivers/staging/unisys/visorchipset/visorchipset_main.c
index 7aac90e..78cb05c 100644
--- a/drivers/staging/unisys/visorchipset/visorchipset_main.c
+++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c
@@ -1399,21 +1399,21 @@ initialize_controlvm_payload_info(HOSTADDRESS 
phys_addr, u64 offset, u32 bytes,
                LOGERR("HUH ? CONTROLVM_PAYLOAD_INIT Failed : Programmer check 
at %s:%d",
                       __FILE__, __LINE__);
                rc = -CONTROLVM_RESP_ERROR_PAYLOAD_INVALID;
-               goto Away;
+               goto cleanups;
        }
        memset(info, 0, sizeof(CONTROLVM_PAYLOAD_INFO));
        if ((offset == 0) || (bytes == 0)) {
                LOGERR("CONTROLVM_PAYLOAD_INIT Failed: 
request_payload_offset=%llu request_payload_bytes=%llu!",
                       (u64)offset, (u64)bytes);
                rc = -CONTROLVM_RESP_ERROR_PAYLOAD_INVALID;
-               goto Away;
+               goto cleanups;
        }
        payload = ioremap_cache(phys_addr + offset, bytes);
        if (payload == NULL) {
                LOGERR("CONTROLVM_PAYLOAD_INIT Failed: ioremap_cache %llu for 
%llu bytes failed",
                       (u64)offset, (u64)bytes);
                rc = -CONTROLVM_RESP_ERROR_IOREMAP_FAILED;
-               goto Away;
+               goto cleanups;
        }
 
        info->offset = offset;
@@ -1422,7 +1422,7 @@ initialize_controlvm_payload_info(HOSTADDRESS phys_addr, 
u64 offset, u32 bytes,
        LOGINF("offset=%llu, bytes=%lu, ptr=%p",
               (u64)(info->offset), (ulong)(info->bytes), info->ptr);
 
-Away:
+cleanups:
        if (rc < 0) {
                if (payload != NULL) {
                        iounmap(payload);
-- 
1.8.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to