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

Changed the camel cases for the void visorchipset_save_message
localSavedCrashMsgOffset -> localsavedcrashmsgoffset
localSavedCrashMsgCount -> localsavedcrashmsgcount

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

diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c 
b/drivers/staging/unisys/visorchipset/visorchipset_main.c
index 8e18fb1..c96473d 100644
--- a/drivers/staging/unisys/visorchipset/visorchipset_main.c
+++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c
@@ -772,25 +772,25 @@ void
 visorchipset_save_message(struct controlvm_message *msg,
                          enum crash_obj_type type)
 {
-       u32 localSavedCrashMsgOffset;
-       u16 localSavedCrashMsgCount;
+       u32 localsavedcrashmsgoffset;
+       u16 localsavedcrashmsgcount;
 
        /* get saved message count */
        if (visorchannel_read(controlvm_channel,
                              offsetof(struct spar_controlvm_channel_protocol,
                                       saved_crash_message_count),
-                             &localSavedCrashMsgCount, sizeof(u16)) < 0) {
+                             &localsavedcrashmsgcount, sizeof(u16)) < 0) {
                LOGERR("failed to get Saved Message Count");
                POSTCODE_LINUX_2(CRASH_DEV_CTRL_RD_FAILURE_PC,
                                 POSTCODE_SEVERITY_ERR);
                return;
        }
 
-       if (localSavedCrashMsgCount != CONTROLVM_CRASHMSG_MAX) {
+       if (localsavedcrashmsgcount != CONTROLVM_CRASHMSG_MAX) {
                LOGERR("Saved Message Count incorrect %d",
-                      localSavedCrashMsgCount);
+                      localsavedcrashmsgcount);
                POSTCODE_LINUX_3(CRASH_DEV_COUNT_FAILURE_PC,
-                                localSavedCrashMsgCount,
+                                localsavedcrashmsgcount,
                                 POSTCODE_SEVERITY_ERR);
                return;
        }
@@ -799,7 +799,7 @@ visorchipset_save_message(struct controlvm_message *msg,
        if (visorchannel_read(controlvm_channel,
                              offsetof(struct spar_controlvm_channel_protocol,
                                       saved_crash_message_offset),
-                             &localSavedCrashMsgOffset, sizeof(u32)) < 0) {
+                             &localsavedcrashmsgoffset, sizeof(u32)) < 0) {
                LOGERR("failed to get Saved Message Offset");
                POSTCODE_LINUX_2(CRASH_DEV_CTRL_RD_FAILURE_PC,
                                 POSTCODE_SEVERITY_ERR);
@@ -808,7 +808,7 @@ visorchipset_save_message(struct controlvm_message *msg,
 
        if (type == CRASH_BUS) {
                if (visorchannel_write(controlvm_channel,
-                                      localSavedCrashMsgOffset,
+                                      localsavedcrashmsgoffset,
                                       msg,
                                       sizeof(struct controlvm_message)) < 0) {
                        LOGERR("SAVE_MSG_BUS_FAILURE: Failed to write 
CrashCreateBusMsg!");
@@ -818,7 +818,7 @@ visorchipset_save_message(struct controlvm_message *msg,
                }
        } else {
                if (visorchannel_write(controlvm_channel,
-                                      localSavedCrashMsgOffset +
+                                      localsavedcrashmsgoffset +
                                       sizeof(struct controlvm_message), msg,
                                       sizeof(struct controlvm_message)) < 0) {
                        LOGERR("SAVE_MSG_DEV_FAILURE: Failed to write 
CrashCreateDevMsg!");
-- 
1.8.4

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

Reply via email to