Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 13 Sep 2016 16:20:31 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r305772 - head/sys/arm64/arm64
Message-ID:  <201609131620.u8DGKVs8043180@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Tue Sep 13 16:20:31 2016
New Revision: 305772
URL: https://svnweb.freebsd.org/changeset/base/305772

Log:
  Add a missing opt_ddb.h include from places that include debug_moditor.h
  to fix the build.
  
  Obtained from:	ABT Systems Ltd
  X-MFC with:	r305771
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/arm64/arm64/db_trace.c
  head/sys/arm64/arm64/debug_monitor.c

Modified: head/sys/arm64/arm64/db_trace.c
==============================================================================
--- head/sys/arm64/arm64/db_trace.c	Tue Sep 13 15:45:22 2016	(r305771)
+++ head/sys/arm64/arm64/db_trace.c	Tue Sep 13 16:20:31 2016	(r305772)
@@ -27,6 +27,8 @@
  * SUCH DAMAGE.
  */
 
+#include "opt_ddb.h"
+
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 #include <sys/param.h>

Modified: head/sys/arm64/arm64/debug_monitor.c
==============================================================================
--- head/sys/arm64/arm64/debug_monitor.c	Tue Sep 13 15:45:22 2016	(r305771)
+++ head/sys/arm64/arm64/debug_monitor.c	Tue Sep 13 16:20:31 2016	(r305772)
@@ -27,6 +27,8 @@
  * SUCH DAMAGE.
  */
 
+#include "opt_ddb.h"
+
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 



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