Module Name:    src
Committed By:   matt
Date:           Wed Dec 29 08:18:29 UTC 2010

Modified Files:
        src/sys/arch/pmax/pmax [matt-nb5-mips64]: interrupt.c

Log Message:
Kill StudlyCaps


To generate a diff of this commit:
cvs rdiff -u -r1.15.18.3 -r1.15.18.4 src/sys/arch/pmax/pmax/interrupt.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/pmax/pmax/interrupt.c
diff -u src/sys/arch/pmax/pmax/interrupt.c:1.15.18.3 src/sys/arch/pmax/pmax/interrupt.c:1.15.18.4
--- src/sys/arch/pmax/pmax/interrupt.c:1.15.18.3	Fri Dec 24 07:23:42 2010
+++ src/sys/arch/pmax/pmax/interrupt.c	Wed Dec 29 08:18:29 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: interrupt.c,v 1.15.18.3 2010/12/24 07:23:42 matt Exp $	*/
+/*	$NetBSD: interrupt.c,v 1.15.18.4 2010/12/29 08:18:29 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.15.18.3 2010/12/24 07:23:42 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.15.18.4 2010/12/29 08:18:29 matt Exp $");
 
 #include <sys/param.h>
 #include <sys/device.h>
@@ -59,8 +59,6 @@
     EVCNT_INITIALIZER(EVCNT_TYPE_INTR, NULL, "memerr", "intr");
 EVCNT_ATTACH_STATIC(pmax_memerr_evcnt);
 
-void MachFPInterrupt(uint32_t, uint32_t, uint32_t, struct trapframe *);
-
 static const char * const intrnames[] = {
 	"serial0",
 	"serial1",
@@ -109,9 +107,7 @@
 				    "PC %#"PRIxVADDR", SR %#x", pc, status);
 
 			pmax_fpu_evcnt.ev_count++;
-			MachFPInterrupt(status,
-			    curlwp->l_md.md_utf->tf_regs[_R_CAUSE], pc,
-			    curlwp->l_md.md_utf);
+			mips_fpu_intr(pc, curlwp->l_md.md_utf);
 		}
 #endif
 	}

Reply via email to