Module Name: src
Committed By: martin
Date: Tue Feb 25 20:14:04 UTC 2020
Modified Files:
src/sys/arch/powerpc/include [netbsd-9]: intr.h
Log Message:
Pull up following revision(s) (requested by rin in ticket #729):
sys/arch/powerpc/include/intr.h: revision 1.15
Fix !__HAVE_FAST_SOFTINTS build for debugging.
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.13.6.1 src/sys/arch/powerpc/include/intr.h
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/powerpc/include/intr.h
diff -u src/sys/arch/powerpc/include/intr.h:1.13 src/sys/arch/powerpc/include/intr.h:1.13.6.1
--- src/sys/arch/powerpc/include/intr.h:1.13 Thu Apr 19 21:50:07 2018
+++ src/sys/arch/powerpc/include/intr.h Tue Feb 25 20:14:04 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.13 2018/04/19 21:50:07 christos Exp $ */
+/* $NetBSD: intr.h,v 1.13.6.1 2020/02/25 20:14:04 martin Exp $ */
/*-
* Copyright (c) 2007 Michael Lorenz
@@ -28,7 +28,7 @@
#ifndef _LOCORE
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intr.h,v 1.13 2018/04/19 21:50:07 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intr.h,v 1.13.6.1 2020/02/25 20:14:04 martin Exp $");
#endif
#ifndef _POWERPC_INTR_MACHDEP_H_
@@ -92,8 +92,10 @@ struct intrhand {
void softint_fast_dispatch(struct lwp *, int);
+#ifdef __HAVE_FAST_SOFTINTS
#define softint_init_md powerpc_softint_init_md
#define softint_trigger powerpc_softint_trigger
+#endif
#ifdef __IMASK_T
typedef __IMASK_T imask_t;