diff options
author | Corey Minyard <minyard@acm.org> | 2005-09-06 15:18:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 16:57:49 -0700 |
commit | e8b336173b86c5db5dd5ae5ad33f3f8605878d0d (patch) | |
tree | 8f48cd879728ab6e625574e21be0d46eab5c632a /drivers/char/ipmi/ipmi_poweroff.c | |
parent | 168524d673f99550d75af49eb3f5d2850420eb66 (diff) |
[PATCH] ipmi: style cleanups
Clean up various style issues in the IPMI driver. Should be no functional
changes.
Signed-off-by: Corey Minyard <minyard@acm.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/ipmi/ipmi_poweroff.c')
-rw-r--r-- | drivers/char/ipmi/ipmi_poweroff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/ipmi/ipmi_poweroff.c b/drivers/char/ipmi/ipmi_poweroff.c index 170590153df..42ea9843b39 100644 --- a/drivers/char/ipmi/ipmi_poweroff.c +++ b/drivers/char/ipmi/ipmi_poweroff.c @@ -525,7 +525,7 @@ static void ipmi_po_new_smi(int if_num) /* Scan for a poweroff method */ - for (i=0; i<NUM_PO_FUNCS; i++) { + for (i = 0; i < NUM_PO_FUNCS; i++) { if (poweroff_functions[i].detect(ipmi_user)) goto found; } |