diff options
author | Tom Hromatka <tom.hromatka@oracle.com> | 2017-01-10 12:57:56 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-16 22:31:51 -0500 |
commit | 5d0e7705774dd412a465896d08d59a81a345c1e4 (patch) | |
tree | c3f73be30eb2b18abe481bb14bc33adb86897d51 | |
parent | 4bbc84ffd137fe43d68aa633d317b0a96de8a828 (diff) |
sparc: Fixed typo in sstate.c. Replaced panicing with panicking
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | arch/sparc/kernel/sstate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sparc/kernel/sstate.c b/arch/sparc/kernel/sstate.c index c59af546f522..3caed4023589 100644 --- a/arch/sparc/kernel/sstate.c +++ b/arch/sparc/kernel/sstate.c | |||
@@ -43,8 +43,8 @@ static const char poweroff_msg[32] __attribute__((aligned(32))) = | |||
43 | "Linux powering off"; | 43 | "Linux powering off"; |
44 | static const char rebooting_msg[32] __attribute__((aligned(32))) = | 44 | static const char rebooting_msg[32] __attribute__((aligned(32))) = |
45 | "Linux rebooting"; | 45 | "Linux rebooting"; |
46 | static const char panicing_msg[32] __attribute__((aligned(32))) = | 46 | static const char panicking_msg[32] __attribute__((aligned(32))) = |
47 | "Linux panicing"; | 47 | "Linux panicking"; |
48 | 48 | ||
49 | static int sstate_reboot_call(struct notifier_block *np, unsigned long type, void *_unused) | 49 | static int sstate_reboot_call(struct notifier_block *np, unsigned long type, void *_unused) |
50 | { | 50 | { |
@@ -76,7 +76,7 @@ static struct notifier_block sstate_reboot_notifier = { | |||
76 | 76 | ||
77 | static int sstate_panic_event(struct notifier_block *n, unsigned long event, void *ptr) | 77 | static int sstate_panic_event(struct notifier_block *n, unsigned long event, void *ptr) |
78 | { | 78 | { |
79 | do_set_sstate(HV_SOFT_STATE_TRANSITION, panicing_msg); | 79 | do_set_sstate(HV_SOFT_STATE_TRANSITION, panicking_msg); |
80 | 80 | ||
81 | return NOTIFY_DONE; | 81 | return NOTIFY_DONE; |
82 | } | 82 | } |