Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Aug 2009 23:37:54 +0000 (UTC)
From:      Olivier Houchard <cognet@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r196484 - head/sys/arm/arm
Message-ID:  <200908232337.n7NNbslF075344@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cognet
Date: Sun Aug 23 23:37:53 2009
New Revision: 196484
URL: http://svn.freebsd.org/changeset/base/196484

Log:
  KDB needs <machine/db_machdep.h>, so move it under #ifdef KDB.
  While I'm there, remove dead code, we will never support acorn26.

Modified:
  head/sys/arm/arm/undefined.c

Modified: head/sys/arm/arm/undefined.c
==============================================================================
--- head/sys/arm/arm/undefined.c	Sun Aug 23 21:09:46 2009	(r196483)
+++ head/sys/arm/arm/undefined.c	Sun Aug 23 23:37:53 2009	(r196484)
@@ -82,11 +82,10 @@ __FBSDID("$FreeBSD$");
 
 #ifdef DDB
 #include <ddb/db_output.h>
-#include <machine/db_machdep.h>
 #endif
 
-#ifdef acorn26
-#include <machine/machdep.h>
+#ifdef KDB
+#include <machine/db_machdep.h>
 #endif
 
 static int gdb_trapper(u_int, u_int, struct trapframe *, int);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200908232337.n7NNbslF075344>