Module Name: src
Committed By: macallan
Date: Tue Dec 23 15:09:13 UTC 2014
Modified Files:
src/sys/arch/evbmips/ingenic: machdep.c mainbus.c
Log Message:
use defflag-ed debug options
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbmips/ingenic/machdep.c \
src/sys/arch/evbmips/ingenic/mainbus.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/evbmips/ingenic/machdep.c
diff -u src/sys/arch/evbmips/ingenic/machdep.c:1.2 src/sys/arch/evbmips/ingenic/machdep.c:1.3
--- src/sys/arch/evbmips/ingenic/machdep.c:1.2 Sat Dec 6 14:30:11 2014
+++ src/sys/arch/evbmips/ingenic/machdep.c Tue Dec 23 15:09:13 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.2 2014/12/06 14:30:11 macallan Exp $ */
+/* $NetBSD: machdep.c,v 1.3 2014/12/23 15:09:13 macallan Exp $ */
/*-
* Copyright (c) 2014 Michael Lorenz
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.2 2014/12/06 14:30:11 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.3 2014/12/23 15:09:13 macallan Exp $");
#include "opt_ddb.h"
#include "opt_kgdb.h"
@@ -62,6 +62,8 @@ __KERNEL_RCSID(0, "$NetBSD: machdep.c,v
#include <mips/ingenic/ingenic_regs.h>
#include <mips/ingenic/ingenic_var.h>
+#include "opt_ingenic.h"
+
/* Maps for VM objects. */
struct vm_map *phys_map = NULL;
Index: src/sys/arch/evbmips/ingenic/mainbus.c
diff -u src/sys/arch/evbmips/ingenic/mainbus.c:1.2 src/sys/arch/evbmips/ingenic/mainbus.c:1.3
--- src/sys/arch/evbmips/ingenic/mainbus.c:1.2 Sat Dec 6 14:30:11 2014
+++ src/sys/arch/evbmips/ingenic/mainbus.c Tue Dec 23 15:09:13 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: mainbus.c,v 1.2 2014/12/06 14:30:11 macallan Exp $ */
+/* $NetBSD: mainbus.c,v 1.3 2014/12/23 15:09:13 macallan Exp $ */
/*-
* Copyright (c) 2014 Michael Lorenz
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.2 2014/12/06 14:30:11 macallan Exp $");
+__KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.3 2014/12/23 15:09:13 macallan Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -38,6 +38,8 @@ __KERNEL_RCSID(0, "$NetBSD: mainbus.c,v
#include <mips/ingenic/ingenic_regs.h>
+#include "opt_ingenic.h"
+
#include "locators.h"
static int mainbus_match(device_t, cfdata_t, void *);