diff options
author | Bryan Thompson <bryan.thompson@unisys.com> | 2016-12-01 01:31:12 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-12-01 03:58:48 -0500 |
commit | a96b44f058a0e895163afc424079e2075a3dd156 (patch) | |
tree | 9ba71d418352a17d6df7af9ebd3d60cb6b006f6c | |
parent | df4c13921eed9e0d5a01b578d78d4c3944903a19 (diff) |
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>
-rw-r--r-- | drivers/staging/unisys/visorbus/visorchipset.c | 4 | ||||
-rw-r--r-- | drivers/staging/unisys/visorbus/vmcallinterface.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b/drivers/staging/unisys/visorbus/visorchipset.c index 143db2eabf1a..e56dd9421db4 100644 --- a/drivers/staging/unisys/visorbus/visorchipset.c +++ b/drivers/staging/unisys/visorbus/visorchipset.c | |||
@@ -1605,7 +1605,7 @@ setup_crash_devices_work_queue(struct work_struct *work) | |||
1605 | local_crash_msg_offset, | 1605 | local_crash_msg_offset, |
1606 | &local_crash_bus_msg, | 1606 | &local_crash_bus_msg, |
1607 | sizeof(struct controlvm_message)) < 0) { | 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 | POSTCODE_SEVERITY_ERR); | 1609 | POSTCODE_SEVERITY_ERR); |
1610 | return; | 1610 | return; |
1611 | } | 1611 | } |
@@ -1616,7 +1616,7 @@ setup_crash_devices_work_queue(struct work_struct *work) | |||
1616 | sizeof(struct controlvm_message), | 1616 | sizeof(struct controlvm_message), |
1617 | &local_crash_dev_msg, | 1617 | &local_crash_dev_msg, |
1618 | sizeof(struct controlvm_message)) < 0) { | 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 | POSTCODE_SEVERITY_ERR); | 1620 | POSTCODE_SEVERITY_ERR); |
1621 | return; | 1621 | return; |
1622 | } | 1622 | } |
diff --git a/drivers/staging/unisys/visorbus/vmcallinterface.h b/drivers/staging/unisys/visorbus/vmcallinterface.h index 65eb924445c5..002b2c6b7ab2 100644 --- a/drivers/staging/unisys/visorbus/vmcallinterface.h +++ b/drivers/staging/unisys/visorbus/vmcallinterface.h | |||
@@ -147,8 +147,8 @@ enum event_pc { /* POSTCODE event identifier tuples */ | |||
147 | MALLOC_FAILURE_PC = 0x015, | 147 | MALLOC_FAILURE_PC = 0x015, |
148 | CRASH_DEV_ENTRY_PC = 0x016, | 148 | CRASH_DEV_ENTRY_PC = 0x016, |
149 | CRASH_DEV_EXIT_PC = 0x017, | 149 | CRASH_DEV_EXIT_PC = 0x017, |
150 | CRASH_DEV_RD_BUS_FAIULRE_PC = 0x018, | 150 | CRASH_DEV_RD_BUS_FAILURE_PC = 0x018, |
151 | CRASH_DEV_RD_DEV_FAIULRE_PC = 0x019, | 151 | CRASH_DEV_RD_DEV_FAILURE_PC = 0x019, |
152 | CRASH_DEV_BUS_NULL_FAILURE_PC = 0x01A, | 152 | CRASH_DEV_BUS_NULL_FAILURE_PC = 0x01A, |
153 | CRASH_DEV_DEV_NULL_FAILURE_PC = 0x01B, | 153 | CRASH_DEV_DEV_NULL_FAILURE_PC = 0x01B, |
154 | CRASH_DEV_CTRL_RD_FAILURE_PC = 0x01C, | 154 | CRASH_DEV_CTRL_RD_FAILURE_PC = 0x01C, |