Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/ibm4xx Remove white-spaces.



details:   https://anonhg.NetBSD.org/src/rev/51e5f453a4cd
branches:  trunk
changeset: 771978:51e5f453a4cd
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Mon Dec 12 11:38:26 2011 +0000

description:
Remove white-spaces.
Indents.

diffstat:

 sys/arch/powerpc/ibm4xx/ibm4xx_machdep.c |  22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diffs (66 lines):

diff -r 55e94db7563c -r 51e5f453a4cd sys/arch/powerpc/ibm4xx/ibm4xx_machdep.c
--- a/sys/arch/powerpc/ibm4xx/ibm4xx_machdep.c  Mon Dec 12 11:31:46 2011 +0000
+++ b/sys/arch/powerpc/ibm4xx/ibm4xx_machdep.c  Mon Dec 12 11:38:26 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ibm4xx_machdep.c,v 1.17 2011/06/20 17:44:33 matt Exp $ */
+/*     $NetBSD: ibm4xx_machdep.c,v 1.18 2011/12/12 11:38:26 kiyohara Exp $     */
 /*     Original: ibm40x_machdep.c,v 1.3 2005/01/17 17:19:36 shige Exp $ */
 
 /*
@@ -68,7 +68,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ibm4xx_machdep.c,v 1.17 2011/06/20 17:44:33 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ibm4xx_machdep.c,v 1.18 2011/12/12 11:38:26 kiyohara Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_ddb.h"
@@ -197,9 +197,9 @@
 
        for (size_t i = 0; i < __arraycount(trap_table); i++) {
                trap_copy(trap_table[i].exc_addr, trap_table[i].exc_vector,
-                   trap_table[i].exc_size); 
+                   trap_table[i].exc_size);
        }
-        
+
        __syncicache((void *)EXC_RST, EXC_LAST - EXC_RST + 0x100);
 
        mtspr(SPR_EVPR, 0);             /* Set Exception vector base */
@@ -210,14 +210,14 @@
        /*
         * external interrupt handler install
         */
-        if (handler)
+       if (handler)
            ibm4xx_install_extint(handler);
 
        /*
         * Now enable translation (and machine checks/recoverable interrupts).
         */
        __asm volatile ("mfmsr %0; ori %0,%0,%1; mtmsr %0; isync"
-                     : : "r"(0), "K"(PSL_IR|PSL_DR)); 
+                     : : "r"(0), "K"(PSL_IR|PSL_DR));
        /* XXXX PSL_ME - With ME set kernel gets stuck... */
 
        /*
@@ -227,13 +227,13 @@
 
        uvm_setpagesize();
 
-        /*
-         * Initialize pmap module.
-         */
-        pmap_bootstrap(startkernel, endkernel);
+       /*
+        * Initialize pmap module.
+        */
+       pmap_bootstrap(startkernel, endkernel);
 
        /*
-        * Let's take all the indirect calls via our stubs and patch 
+        * Let's take all the indirect calls via our stubs and patch
         * them to be direct calls.
         */
        cpu_fixup_stubs();



Home | Main Index | Thread Index | Old Index