svn commit: r349077 - head/sys/arm/ti/am335x

Ian Lepore ian at FreeBSD.org
Sat Jun 15 20:20:38 UTC 2019


Author: ian
Date: Sat Jun 15 20:20:36 2019
New Revision: 349077
URL: https://svnweb.freebsd.org/changeset/base/349077

Log:
  Add a missing #include.  I suspect this used to get included via some header
  pollution that was cleaned up recently, and this file got missed in the
  cleanup because it's not attached to the build unless you specifically
  request this device in a custom kernel config.

Modified:
  head/sys/arm/ti/am335x/am335x_dmtpps.c

Modified: head/sys/arm/ti/am335x/am335x_dmtpps.c
==============================================================================
--- head/sys/arm/ti/am335x/am335x_dmtpps.c	Sat Jun 15 20:17:00 2019	(r349076)
+++ head/sys/arm/ti/am335x/am335x_dmtpps.c	Sat Jun 15 20:20:36 2019	(r349077)
@@ -50,6 +50,7 @@ __FBSDID("$FreeBSD$");
 #include <sys/kernel.h>
 #include <sys/module.h>
 #include <sys/malloc.h>
+#include <sys/mutex.h>
 #include <sys/rman.h>
 #include <sys/taskqueue.h>
 #include <sys/timepps.h>


More information about the svn-src-all mailing list