svn commit: r295474 - head/sys/dev/uart

Andrew Turner andrew at FreeBSD.org
Wed Feb 10 16:49:22 UTC 2016


Author: andrew
Date: Wed Feb 10 16:49:20 2016
New Revision: 295474
URL: https://svnweb.freebsd.org/changeset/base/295474

Log:
  Explicitly include <sys/systm.h>. Previously we were pulling it in due to
  header pollution.

Modified:
  head/sys/dev/uart/uart_bus_fdt.c

Modified: head/sys/dev/uart/uart_bus_fdt.c
==============================================================================
--- head/sys/dev/uart/uart_bus_fdt.c	Wed Feb 10 16:44:20 2016	(r295473)
+++ head/sys/dev/uart/uart_bus_fdt.c	Wed Feb 10 16:49:20 2016	(r295474)
@@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$");
 #include "opt_platform.h"
 
 #include <sys/param.h>
+#include <sys/systm.h>
 #include <sys/bus.h>
 #include <sys/kernel.h>
 #include <sys/module.h>


More information about the svn-src-head mailing list