Module Name:    src
Committed By:   skrll
Date:           Fri Aug 27 09:23:28 UTC 2021

Modified Files:
        src/sys/arch/cats/cats: cats_machdep.c

Log Message:
initarm_common already calls db_machine_init, so don't do it for a second
time otherwise the handlers list just loops.


To generate a diff of this commit:
cvs rdiff -u -r1.90 -r1.91 src/sys/arch/cats/cats/cats_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/cats/cats/cats_machdep.c
diff -u src/sys/arch/cats/cats/cats_machdep.c:1.90 src/sys/arch/cats/cats/cats_machdep.c:1.91
--- src/sys/arch/cats/cats/cats_machdep.c:1.90	Fri Aug 27 09:14:55 2021
+++ src/sys/arch/cats/cats/cats_machdep.c	Fri Aug 27 09:23:27 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: cats_machdep.c,v 1.90 2021/08/27 09:14:55 skrll Exp $	*/
+/*	$NetBSD: cats_machdep.c,v 1.91 2021/08/27 09:23:27 skrll Exp $	*/
 
 /*
  * Copyright (c) 1997,1998 Mark Brinicombe.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cats_machdep.c,v 1.90 2021/08/27 09:14:55 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cats_machdep.c,v 1.91 2021/08/27 09:23:27 skrll Exp $");
 
 #include "opt_ddb.h"
 #include "opt_modular.h"
@@ -475,7 +475,6 @@ initarm(void *arm_bootargs)
 #endif
 
 #ifdef DDB
-	db_machine_init();
 	if (boothowto & RB_KDB)
 		Debugger();
 #endif

Reply via email to