Module Name:    src
Committed By:   thorpej
Date:           Mon Jan 15 19:30:15 UTC 2024

Modified Files:
        src/sys/arch/luna68k/include: vectors.h
        src/sys/arch/luna68k/luna68k: locore.s

Log Message:
No need for our own spurious interrupt handler now that m68k_intr.c
handles them for us.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/luna68k/include/vectors.h
cvs rdiff -u -r1.77 -r1.78 src/sys/arch/luna68k/luna68k/locore.s

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/luna68k/include/vectors.h
diff -u src/sys/arch/luna68k/include/vectors.h:1.2 src/sys/arch/luna68k/include/vectors.h:1.3
--- src/sys/arch/luna68k/include/vectors.h:1.2	Mon Jan 15 02:16:52 2024
+++ src/sys/arch/luna68k/include/vectors.h	Mon Jan 15 19:30:14 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: vectors.h,v 1.2 2024/01/15 02:16:52 thorpej Exp $	*/
+/*	$NetBSD: vectors.h,v 1.3 2024/01/15 19:30:14 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 2024 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
 
 #include <m68k/vectors.h>
 
-#define	MACHINE_AV0_HANDLER	spurintr
+#define	MACHINE_AV0_HANDLER	intrstub_autovec
 #define	MACHINE_AV1_HANDLER	intrstub_autovec
 #define	MACHINE_AV2_HANDLER	intrstub_autovec
 #define	MACHINE_AV3_HANDLER	intrstub_autovec

Index: src/sys/arch/luna68k/luna68k/locore.s
diff -u src/sys/arch/luna68k/luna68k/locore.s:1.77 src/sys/arch/luna68k/luna68k/locore.s:1.78
--- src/sys/arch/luna68k/luna68k/locore.s:1.77	Mon Jan 15 02:16:52 2024
+++ src/sys/arch/luna68k/luna68k/locore.s	Mon Jan 15 19:30:15 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.s,v 1.77 2024/01/15 02:16:52 thorpej Exp $ */
+/* $NetBSD: locore.s,v 1.78 2024/01/15 19:30:15 thorpej Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -554,13 +554,6 @@ Lbrkpt3:
  * Interrupt handlers.
  */
 
-ENTRY_NOPROFILE(spurintr)		/* Level 0 */
-	addql	#1,_C_LABEL(intrcnt)+0
-	INTERRUPT_SAVEREG
-	CPUINFO_INCREMENT(CI_NINTR)
-	INTERRUPT_RESTOREREG
-	jra	_ASM_LABEL(rei)
-
 ENTRY_NOPROFILE(lev7intr)		/* Level 7: NMI */
 	addql	#1,_C_LABEL(intrcnt)+32
 	clrl	%sp@-

Reply via email to