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

Fixed the camel cases for the static voids: chipset_ready, chipset_
selftest, & chipset_notready
msgHdr -> msghdr

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

diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c 
b/drivers/staging/unisys/visorchipset/visorchipset_main.c
index c09b554..ca57e03 100644
--- a/drivers/staging/unisys/visorchipset/visorchipset_main.c
+++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c
@@ -1508,43 +1508,43 @@ visorchipset_chipset_notready(void)
 EXPORT_SYMBOL_GPL(visorchipset_chipset_notready);
 
 static void
-chipset_ready(struct controlvm_message_header *msgHdr)
+chipset_ready(struct controlvm_message_header *msghdr)
 {
        int rc = visorchipset_chipset_ready();
 
        if (rc != CONTROLVM_RESP_SUCCESS)
                rc = -rc;
-       if (msgHdr->flags.response_expected && !visorchipset_holdchipsetready)
-               controlvm_respond(msgHdr, rc);
-       if (msgHdr->flags.response_expected && visorchipset_holdchipsetready) {
+       if (msghdr->flags.response_expected && !visorchipset_holdchipsetready)
+               controlvm_respond(msghdr, rc);
+       if (msghdr->flags.response_expected && visorchipset_holdchipsetready) {
                /* Send CHIPSET_READY response when all modules have been loaded
                 * and disks mounted for the partition
                 */
-               g_chipsetmsghdr = *msgHdr;
+               g_chipsetmsghdr = *msghdr;
                LOGINF("Holding CHIPSET_READY response");
        }
 }
 
 static void
-chipset_selftest(struct controlvm_message_header *msgHdr)
+chipset_selftest(struct controlvm_message_header *msghdr)
 {
        int rc = visorchipset_chipset_selftest();
 
        if (rc != CONTROLVM_RESP_SUCCESS)
                rc = -rc;
-       if (msgHdr->flags.response_expected)
-               controlvm_respond(msgHdr, rc);
+       if (msghdr->flags.response_expected)
+               controlvm_respond(msghdr, rc);
 }
 
 static void
-chipset_notready(struct controlvm_message_header *msgHdr)
+chipset_notready(struct controlvm_message_header *msghdr)
 {
        int rc = visorchipset_chipset_notready();
 
        if (rc != CONTROLVM_RESP_SUCCESS)
                rc = -rc;
-       if (msgHdr->flags.response_expected)
-               controlvm_respond(msgHdr, rc);
+       if (msghdr->flags.response_expected)
+               controlvm_respond(msghdr, rc);
 }
 
 /* This is your "one-stop" shop for grabbing the next message from the
-- 
1.8.4

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

Reply via email to