Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: unisys: visorbus: Fix spelling error (FAIULRE to FAILURE)

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>

authored by

Bryan Thompson and committed by
Greg Kroah-Hartman
a96b44f0 df4c1392

+4 -4
+2 -2
drivers/staging/unisys/visorbus/visorchipset.c
··· 1605 1605 local_crash_msg_offset, 1606 1606 &local_crash_bus_msg, 1607 1607 sizeof(struct controlvm_message)) < 0) { 1608 - POSTCODE_LINUX(CRASH_DEV_RD_BUS_FAIULRE_PC, 0, 0, 1608 + POSTCODE_LINUX(CRASH_DEV_RD_BUS_FAILURE_PC, 0, 0, 1609 1609 POSTCODE_SEVERITY_ERR); 1610 1610 return; 1611 1611 } ··· 1616 1616 sizeof(struct controlvm_message), 1617 1617 &local_crash_dev_msg, 1618 1618 sizeof(struct controlvm_message)) < 0) { 1619 - POSTCODE_LINUX(CRASH_DEV_RD_DEV_FAIULRE_PC, 0, 0, 1619 + POSTCODE_LINUX(CRASH_DEV_RD_DEV_FAILURE_PC, 0, 0, 1620 1620 POSTCODE_SEVERITY_ERR); 1621 1621 return; 1622 1622 }
+2 -2
drivers/staging/unisys/visorbus/vmcallinterface.h
··· 147 147 MALLOC_FAILURE_PC = 0x015, 148 148 CRASH_DEV_ENTRY_PC = 0x016, 149 149 CRASH_DEV_EXIT_PC = 0x017, 150 - CRASH_DEV_RD_BUS_FAIULRE_PC = 0x018, 151 - CRASH_DEV_RD_DEV_FAIULRE_PC = 0x019, 150 + CRASH_DEV_RD_BUS_FAILURE_PC = 0x018, 151 + CRASH_DEV_RD_DEV_FAILURE_PC = 0x019, 152 152 CRASH_DEV_BUS_NULL_FAILURE_PC = 0x01A, 153 153 CRASH_DEV_DEV_NULL_FAILURE_PC = 0x01B, 154 154 CRASH_DEV_CTRL_RD_FAILURE_PC = 0x01C,