]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: coding style fixes to arch/x86/xen/multicalls.c
authorPaolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Fri, 22 Feb 2008 22:11:59 +0000 (23:11 +0100)
committerIngo Molnar <mingo@elte.hu>
Thu, 17 Apr 2008 15:40:50 +0000 (17:40 +0200)
Before:
   total: 2 errors, 2 warnings, 138 lines checked
After:
   total: 0 errors, 2 warnings, 138 lines checked

No code changed:

arch/x86/xen/multicalls.o:

   text    data     bss     dec     hex filename
    887    2832       0    3719     e87 multicalls.o.before
    887    2832       0    3719     e87 multicalls.o.after

md5:
   cf6d72d9db6dc5a3ebe01eec9f05e95f  multicalls.o.before.asm
   cf6d72d9db6dc5a3ebe01eec9f05e95f  multicalls.o.after.asm

Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/xen/multicalls.c

index 5e6f36f6d8767268a48d699b2431fc7d9849fa0b..5791eb2e37508dc87ab6d9f74bdc53da6f24ae4b 100644 (file)
@@ -76,7 +76,7 @@ void xen_mc_flush(void)
                if (ret) {
                        printk(KERN_ERR "%d multicall(s) failed: cpu %d\n",
                               ret, smp_processor_id());
-                       for(i = 0; i < b->mcidx; i++) {
+                       for (i = 0; i < b->mcidx; i++) {
                                printk("  call %2d/%d: op=%lu arg=[%lx] result=%ld\n",
                                       i+1, b->mcidx,
                                       b->debug[i].op,
@@ -93,7 +93,7 @@ void xen_mc_flush(void)
 
        local_irq_restore(flags);
 
-       for(i = 0; i < b->cbidx; i++) {
+       for (i = 0; i < b->cbidx; i++) {
                struct callback *cb = &b->callbacks[i];
 
                (*cb->fn)(cb->data);