Tue Aug 15 08:52:41 2017 UTC ()
remove unnecessary include. no aout code here!


(maya)
diff -r1.85 -r1.86 src/sys/arch/cats/cats/cats_machdep.c

cvs diff -r1.85 -r1.86 src/sys/arch/cats/cats/cats_machdep.c (expand / switch to unified diff)

--- src/sys/arch/cats/cats/cats_machdep.c 2017/08/15 08:47:39 1.85
+++ src/sys/arch/cats/cats/cats_machdep.c 2017/08/15 08:52:41 1.86
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: cats_machdep.c,v 1.85 2017/08/15 08:47:39 maya Exp $ */ 1/* $NetBSD: cats_machdep.c,v 1.86 2017/08/15 08:52:41 maya Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1997,1998 Mark Brinicombe. 4 * Copyright (c) 1997,1998 Mark Brinicombe.
5 * Copyright (c) 1997,1998 Causality Limited. 5 * Copyright (c) 1997,1998 Causality Limited.
6 * All rights reserved. 6 * All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
11 * 1. Redistributions of source code must retain the above copyright 11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer. 12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright 13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the 14 * notice, this list of conditions and the following disclaimer in the
@@ -30,40 +30,39 @@ @@ -30,40 +30,39 @@
30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE. 34 * SUCH DAMAGE.
35 * 35 *
36 * Machine dependent functions for kernel setup for EBSA285 core architecture 36 * Machine dependent functions for kernel setup for EBSA285 core architecture
37 * using cyclone firmware 37 * using cyclone firmware
38 * 38 *
39 * Created : 24/11/97 39 * Created : 24/11/97
40 */ 40 */
41 41
42#include <sys/cdefs.h> 42#include <sys/cdefs.h>
43__KERNEL_RCSID(0, "$NetBSD: cats_machdep.c,v 1.85 2017/08/15 08:47:39 maya Exp $"); 43__KERNEL_RCSID(0, "$NetBSD: cats_machdep.c,v 1.86 2017/08/15 08:52:41 maya Exp $");
44 44
45#include "opt_ddb.h" 45#include "opt_ddb.h"
46#include "opt_modular.h" 46#include "opt_modular.h"
47#include "opt_pmap_debug.h" 47#include "opt_pmap_debug.h"
48 48
49#include "isadma.h" 49#include "isadma.h"
50 50
51#include <sys/param.h> 51#include <sys/param.h>
52#include <sys/device.h> 52#include <sys/device.h>
53#include <sys/systm.h> 53#include <sys/systm.h>
54#include <sys/kernel.h> 54#include <sys/kernel.h>
55#include <sys/exec.h> 55#include <sys/exec.h>
56#include <sys/exec_aout.h> 
57#include <sys/proc.h> 56#include <sys/proc.h>
58#include <sys/msgbuf.h> 57#include <sys/msgbuf.h>
59#include <sys/reboot.h> 58#include <sys/reboot.h>
60#include <sys/termios.h> 59#include <sys/termios.h>
61#include <sys/ksyms.h> 60#include <sys/ksyms.h>
62#include <sys/cpu.h> 61#include <sys/cpu.h>
63#include <sys/intr.h> 62#include <sys/intr.h>
64 63
65#include <dev/cons.h> 64#include <dev/cons.h>
66 65
67#include <machine/db_machdep.h> 66#include <machine/db_machdep.h>
68#include <ddb/db_sym.h> 67#include <ddb/db_sym.h>
69#include <ddb/db_extern.h> 68#include <ddb/db_extern.h>