Rework includes and include <uvm/uvm_extern.h> for pmap.h

This commit is contained in:
matt 2012-09-01 12:15:39 +00:00
parent 372f01277c
commit b5757b6916
2 changed files with 13 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: intr.c,v 1.33 2012/07/27 05:36:09 matt Exp $ */
/* $NetBSD: intr.c,v 1.34 2012/09/01 12:15:39 matt Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -36,16 +36,16 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.33 2012/07/27 05:36:09 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: intr.c,v 1.34 2012/09/01 12:15:39 matt Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/syslog.h>
#include <sys/malloc.h>
#include <sys/conf.h>
#include <sys/cpu.h>
#include <sys/intr.h>
#include <sys/syslog.h>
#include <machine/intr.h>
#include <machine/cpu.h>
#include <uvm/uvm_extern.h>
#include <arm/arm32/machdep.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: autoconf.c,v 1.18 2012/07/29 18:05:46 mlelstv Exp $ */
/* $NetBSD: autoconf.c,v 1.19 2012/09/01 12:15:39 matt Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@ -43,7 +43,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.18 2012/07/29 18:05:46 mlelstv Exp $");
__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.19 2012/09/01 12:15:39 matt Exp $");
#include "opt_md.h"
@ -53,11 +53,15 @@ __KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.18 2012/07/29 18:05:46 mlelstv Exp $"
#include <sys/disklabel.h>
#include <sys/device.h>
#include <sys/conf.h>
#include <sys/intr.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <uvm/uvm_extern.h>
#include <arm/arm32/machdep.h>
#include <machine/bootconfig.h>
#include <machine/intr.h>
#include <machine/irqhandler.h>
#include "isa.h"