svn commit: r352225 - head/sys/riscv/riscv

Kristof Provost kp at FreeBSD.org
Wed Sep 11 18:07:16 UTC 2019


Author: kp
Date: Wed Sep 11 18:07:15 2019
New Revision: 352225
URL: https://svnweb.freebsd.org/changeset/base/352225

Log:
  riscv: Add missing header
  
  r352218 missing an include statement, causing the build to fail.
  
  Submitted by:	Nicholas O'Brien (nickisobrien_gmail.com)
  Sponsored by:	Axiado

Modified:
  head/sys/riscv/riscv/identcpu.c

Modified: head/sys/riscv/riscv/identcpu.c
==============================================================================
--- head/sys/riscv/riscv/identcpu.c	Wed Sep 11 17:56:48 2019	(r352224)
+++ head/sys/riscv/riscv/identcpu.c	Wed Sep 11 18:07:15 2019	(r352225)
@@ -52,6 +52,7 @@ __FBSDID("$FreeBSD$");
 #ifdef FDT
 #include <dev/fdt/fdt_common.h>
 #include <dev/ofw/openfirm.h>
+#include <dev/ofw/ofw_bus_subr.h>
 #endif
 
 char machine[] = "riscv";


More information about the svn-src-all mailing list