Module Name: src
Committed By: scole
Date: Sat Apr 8 17:44:27 UTC 2017
Modified Files:
src/sys/arch/ia64/ia64: interrupt.c
Log Message:
Add ia64_handle_intr() stub
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/ia64/ia64/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/ia64/ia64/interrupt.c
diff -u src/sys/arch/ia64/ia64/interrupt.c:1.6 src/sys/arch/ia64/ia64/interrupt.c:1.7
--- src/sys/arch/ia64/ia64/interrupt.c:1.6 Sat Oct 1 15:59:28 2011
+++ src/sys/arch/ia64/ia64/interrupt.c Sat Apr 8 17:44:27 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: interrupt.c,v 1.6 2011/10/01 15:59:28 chs Exp $ */
+/* $NetBSD: interrupt.c,v 1.7 2017/04/08 17:44:27 scole Exp $ */
/*-
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
@@ -33,7 +33,7 @@
*/
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.6 2011/10/01 15:59:28 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.7 2017/04/08 17:44:27 scole Exp $");
#include "opt_ddb.h"
@@ -363,6 +363,12 @@ ia64_dispatch_intr(void *frame, u_int ve
return handled;
}
+void
+ia64_handle_intr(void *tf)
+{
+ panic("XXX %s not implemented", __func__);
+}
+
#ifdef DDB
void
db_print_vector(u_int vector, int always)