]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: unisys: visorbus: Fix spelling error (FAIULRE to FAILURE)
authorBryan Thompson <bryan.thompson@unisys.com>
Thu, 1 Dec 2016 06:31:12 +0000 (01:31 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Dec 2016 08:58:48 +0000 (09:58 +0100)
There were two instances of FAILURE being misspelled in the s-Par
firmware postcode event enum that are fixed.

Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: David Kershner <david.kershner@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorbus/visorchipset.c
drivers/staging/unisys/visorbus/vmcallinterface.h

index 143db2eabf1ab024a5580ed4c31e084d3f1724ed..e56dd9421db4228a26c3cb39434f37a2f2ec6ae4 100644 (file)
@@ -1605,7 +1605,7 @@ setup_crash_devices_work_queue(struct work_struct *work)
                              local_crash_msg_offset,
                              &local_crash_bus_msg,
                              sizeof(struct controlvm_message)) < 0) {
-               POSTCODE_LINUX(CRASH_DEV_RD_BUS_FAIULRE_PC, 0, 0,
+               POSTCODE_LINUX(CRASH_DEV_RD_BUS_FAILURE_PC, 0, 0,
                               POSTCODE_SEVERITY_ERR);
                return;
        }
@@ -1616,7 +1616,7 @@ setup_crash_devices_work_queue(struct work_struct *work)
                              sizeof(struct controlvm_message),
                              &local_crash_dev_msg,
                              sizeof(struct controlvm_message)) < 0) {
-               POSTCODE_LINUX(CRASH_DEV_RD_DEV_FAIULRE_PC, 0, 0,
+               POSTCODE_LINUX(CRASH_DEV_RD_DEV_FAILURE_PC, 0, 0,
                               POSTCODE_SEVERITY_ERR);
                return;
        }
index 65eb924445c52ee993263030e0b4099dab4762ef..002b2c6b7ab200b7549fd2f2750835af4eeeb30a 100644 (file)
@@ -147,8 +147,8 @@ enum event_pc {                     /* POSTCODE event identifier tuples */
        MALLOC_FAILURE_PC = 0x015,
        CRASH_DEV_ENTRY_PC = 0x016,
        CRASH_DEV_EXIT_PC = 0x017,
-       CRASH_DEV_RD_BUS_FAIULRE_PC = 0x018,
-       CRASH_DEV_RD_DEV_FAIULRE_PC = 0x019,
+       CRASH_DEV_RD_BUS_FAILURE_PC = 0x018,
+       CRASH_DEV_RD_DEV_FAILURE_PC = 0x019,
        CRASH_DEV_BUS_NULL_FAILURE_PC = 0x01A,
        CRASH_DEV_DEV_NULL_FAILURE_PC = 0x01B,
        CRASH_DEV_CTRL_RD_FAILURE_PC = 0x01C,