Module Name: src Committed By: matt Date: Fri Jun 26 22:18:00 UTC 2015
Modified Files: src/sys/arch/hpcmips/hpcmips: interrupt.c kloader_machdep.c Log Message: #include <mips/locore.h> To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/arch/hpcmips/hpcmips/interrupt.c cvs rdiff -u -r1.8 -r1.9 src/sys/arch/hpcmips/hpcmips/kloader_machdep.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/hpcmips/hpcmips/interrupt.c diff -u src/sys/arch/hpcmips/hpcmips/interrupt.c:1.19 src/sys/arch/hpcmips/hpcmips/interrupt.c:1.20 --- src/sys/arch/hpcmips/hpcmips/interrupt.c:1.19 Tue Jun 9 22:46:36 2015 +++ src/sys/arch/hpcmips/hpcmips/interrupt.c Fri Jun 26 22:17:59 2015 @@ -1,4 +1,4 @@ -/* $NetBSD: interrupt.c,v 1.19 2015/06/09 22:46:36 matt Exp $ */ +/* $NetBSD: interrupt.c,v 1.20 2015/06/26 22:17:59 matt Exp $ */ /*- * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.19 2015/06/09 22:46:36 matt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: interrupt.c,v 1.20 2015/06/26 22:17:59 matt Exp $"); #include "opt_vr41xx.h" #include "opt_tx39xx.h" @@ -42,6 +42,8 @@ __KERNEL_RCSID(0, "$NetBSD: interrupt.c, #include <sys/malloc.h> #include <sys/intr.h> +#include <mips/locore.h> + #include <machine/sysconf.h> void Index: src/sys/arch/hpcmips/hpcmips/kloader_machdep.c diff -u src/sys/arch/hpcmips/hpcmips/kloader_machdep.c:1.8 src/sys/arch/hpcmips/hpcmips/kloader_machdep.c:1.9 --- src/sys/arch/hpcmips/hpcmips/kloader_machdep.c:1.8 Tue Jun 9 22:46:36 2015 +++ src/sys/arch/hpcmips/hpcmips/kloader_machdep.c Fri Jun 26 22:17:59 2015 @@ -1,4 +1,4 @@ -/* $NetBSD: kloader_machdep.c,v 1.8 2015/06/09 22:46:36 matt Exp $ */ +/* $NetBSD: kloader_machdep.c,v 1.9 2015/06/26 22:17:59 matt Exp $ */ /*- * Copyright (c) 2001, 2002, 2004 The NetBSD Foundation, Inc. @@ -27,12 +27,13 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: kloader_machdep.c,v 1.8 2015/06/09 22:46:36 matt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kloader_machdep.c,v 1.9 2015/06/26 22:17:59 matt Exp $"); #include <sys/param.h> #include <sys/cpu.h> #include <sys/systm.h> +#include <mips/locore.h> #include <mips/cache.h> #include <machine/sysconf.h>