Module Name:    src
Committed By:   rin
Date:           Mon Feb 24 12:08:09 UTC 2020

Modified Files:
        src/sys/arch/arm/arm: fiq.c

Log Message:
Fix previous; we need <uvm/uvm_extern.h> for machines with
!ARM_HAS_VBAR && !__ARM_FIQ_INDIRECT.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/arm/fiq.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/arm/arm/fiq.c
diff -u src/sys/arch/arm/arm/fiq.c:1.9 src/sys/arch/arm/arm/fiq.c:1.10
--- src/sys/arch/arm/arm/fiq.c:1.9	Sat Feb 22 19:49:11 2020
+++ src/sys/arch/arm/arm/fiq.c	Mon Feb 24 12:08:08 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: fiq.c,v 1.9 2020/02/22 19:49:11 chs Exp $	*/
+/*	$NetBSD: fiq.c,v 1.10 2020/02/24 12:08:08 rin Exp $	*/
 
 /*
  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fiq.c,v 1.9 2020/02/22 19:49:11 chs Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fiq.c,v 1.10 2020/02/24 12:08:08 rin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -44,6 +44,8 @@ __KERNEL_RCSID(0, "$NetBSD: fiq.c,v 1.9 
 #include <arm/cpufunc.h>
 #include <arm/fiq.h>
 
+#include <uvm/uvm_extern.h>
+
 TAILQ_HEAD(, fiqhandler) fiqhandler_stack =
     TAILQ_HEAD_INITIALIZER(fiqhandler_stack);
 

Reply via email to