Module Name:    src
Committed By:   tsutsui
Date:           Sat Jun 29 03:10:51 UTC 2019

Modified Files:
        src/sys/arch/atari/atari: machdep.c

Log Message:
TAB/space cleanup.


To generate a diff of this commit:
cvs rdiff -u -r1.177 -r1.178 src/sys/arch/atari/atari/machdep.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/atari/atari/machdep.c
diff -u src/sys/arch/atari/atari/machdep.c:1.177 src/sys/arch/atari/atari/machdep.c:1.178
--- src/sys/arch/atari/atari/machdep.c:1.177	Wed Mar 26 18:04:33 2014
+++ src/sys/arch/atari/atari/machdep.c	Sat Jun 29 03:10:51 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: machdep.c,v 1.177 2014/03/26 18:04:33 christos Exp $	*/
+/*	$NetBSD: machdep.c,v 1.178 2019/06/29 03:10:51 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -39,7 +39,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.177 2014/03/26 18:04:33 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.178 2019/06/29 03:10:51 tsutsui Exp $");
 
 #include "opt_ddb.h"
 #include "opt_compat_netbsd.h"
@@ -172,8 +172,8 @@ consinit(void)
 	}
 #endif
 #if defined (DDB)
-        if (boothowto & RB_KDB)
-                Debugger();
+	if (boothowto & RB_KDB)
+		Debugger();
 #endif
 }
 
@@ -235,7 +235,7 @@ cpu_startup(void)
 static void
 identifycpu(void)
 {
-       const char *mach, *mmu, *fpu, *cpu;
+	const char *mach, *mmu, *fpu, *cpu;
 
 	switch (machineid & ATARI_ANYMACH) {
 	case ATARI_TT:
@@ -260,7 +260,6 @@ identifycpu(void)
 	fpu     = fpu_describe(fputype);
 
 	switch (cputype) {
- 
 	case CPU_68060:
 		{
 			uint32_t	pcr;
@@ -597,7 +596,7 @@ badbaddr(void *addr, int size)
 /*
  * this is a handy package to have asynchronously executed
  * function calls executed at very low interrupt priority.
- * Example for use is keyboard repeat, where the repeat 
+ * Example for use is keyboard repeat, where the repeat
  * handler running at splclock() triggers such a (hardware
  * aided) software interrupt.
  * Note: the installed functions are currently called in a

Reply via email to