Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/amd64/amd64 Fix indentation



details:   https://anonhg.NetBSD.org/src/rev/a3d3ca1ef99f
branches:  trunk
changeset: 754736:a3d3ca1ef99f
user:      joerg <joerg%NetBSD.org@localhost>
date:      Tue May 11 02:34:39 2010 +0000

description:
Fix indentation

diffstat:

 sys/arch/amd64/amd64/netbsd32_machdep.c |  34 ++++++++++++++++----------------
 1 files changed, 17 insertions(+), 17 deletions(-)

diffs (55 lines):

diff -r 62851b43f53e -r a3d3ca1ef99f sys/arch/amd64/amd64/netbsd32_machdep.c
--- a/sys/arch/amd64/amd64/netbsd32_machdep.c   Tue May 11 01:38:14 2010 +0000
+++ b/sys/arch/amd64/amd64/netbsd32_machdep.c   Tue May 11 02:34:39 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_machdep.c,v 1.62 2010/04/23 19:18:09 rmind Exp $      */
+/*     $NetBSD: netbsd32_machdep.c,v 1.63 2010/05/11 02:34:39 joerg Exp $      */
 
 /*
  * Copyright (c) 2001 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.62 2010/04/23 19:18:09 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_machdep.c,v 1.63 2010/05/11 02:34:39 joerg Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -612,21 +612,21 @@
        int error;
 
        switch (SCARG(uap, op)) {
-               case X86_IOPL:
-                       error = x86_iopl(l,
-                           NETBSD32PTR64(SCARG(uap, parms)), retval);
-                       break;
-               case X86_GET_MTRR:
-                       error = x86_64_get_mtrr32(l,
-                           NETBSD32PTR64(SCARG(uap, parms)), retval);
-                       break;
-               case X86_SET_MTRR:
-                       error = x86_64_set_mtrr32(l,
-                           NETBSD32PTR64(SCARG(uap, parms)), retval);
-                       break;
-               default:
-                       error = EINVAL;
-                       break;
+       case X86_IOPL:
+               error = x86_iopl(l,
+                   NETBSD32PTR64(SCARG(uap, parms)), retval);
+               break;
+       case X86_GET_MTRR:
+               error = x86_64_get_mtrr32(l,
+                   NETBSD32PTR64(SCARG(uap, parms)), retval);
+               break;
+       case X86_SET_MTRR:
+               error = x86_64_set_mtrr32(l,
+                   NETBSD32PTR64(SCARG(uap, parms)), retval);
+               break;
+       default:
+               error = EINVAL;
+               break;
        }
        return error;
 }



Home | Main Index | Thread Index | Old Index