aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/ipmi
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2006-06-26 16:33:14 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-26 16:33:14 -0400
commitda206c9e68cb93fcab43592d46276c02889c1250 (patch)
tree21264cc26fa0322d668b398808f10bd93558d25f /drivers/char/ipmi
parent916d15445f4ad2a9018e5451760734f36083be77 (diff)
parent2e2d0dcc1bd7ca7c26ea5e29efb7f34bbd564f1c (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial
* git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial: typo fixes Clean up 'inline is not at beginning' warnings for usb storage Storage class should be first i386: Trivial typo fixes ixj: make ixj_set_tone_off() static spelling fixes fix paniced->panicked typos Spelling fixes for Documentation/atomic_ops.txt move acknowledgment for Mark Adler to CREDITS remove the bouncing email address of David Campbell
Diffstat (limited to 'drivers/char/ipmi')
-rw-r--r--drivers/char/ipmi/ipmi_msghandler.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c
index 23028559dbc4..b03ddab1bef5 100644
--- a/drivers/char/ipmi/ipmi_msghandler.c
+++ b/drivers/char/ipmi/ipmi_msghandler.c
@@ -3674,7 +3674,7 @@ static void send_panic_events(char *str)
3674} 3674}
3675#endif /* CONFIG_IPMI_PANIC_EVENT */ 3675#endif /* CONFIG_IPMI_PANIC_EVENT */
3676 3676
3677static int has_paniced = 0; 3677static int has_panicked = 0;
3678 3678
3679static int panic_event(struct notifier_block *this, 3679static int panic_event(struct notifier_block *this,
3680 unsigned long event, 3680 unsigned long event,
@@ -3683,9 +3683,9 @@ static int panic_event(struct notifier_block *this,
3683 int i; 3683 int i;
3684 ipmi_smi_t intf; 3684 ipmi_smi_t intf;
3685 3685
3686 if (has_paniced) 3686 if (has_panicked)
3687 return NOTIFY_DONE; 3687 return NOTIFY_DONE;
3688 has_paniced = 1; 3688 has_panicked = 1;
3689 3689
3690 /* For every registered interface, set it to run to completion. */ 3690 /* For every registered interface, set it to run to completion. */
3691 for (i = 0; i < MAX_IPMI_INTERFACES; i++) { 3691 for (i = 0; i < MAX_IPMI_INTERFACES; i++) {