aboutsummaryrefslogtreecommitdiff
path: root/sys/mips
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2019-05-21 01:18:43 +0000
committerConrad Meyer <cem@FreeBSD.org>2019-05-21 01:18:43 +0000
commite12be3218a280716128879e59a469f3680b103e4 (patch)
tree8fef7b196421dc1bcf5ffd244c3aad8dc03b1b03 /sys/mips
parent637b653270e0ecd3ceaa1494cacf6f59928c9b4c (diff)
downloadsrc-e12be3218a280716128879e59a469f3680b103e4.tar.gz
src-e12be3218a280716128879e59a469f3680b103e4.zip
Include eventhandler.h in more compilation units
This was enumerated with exhaustive search for sys/eventhandler.h includes, cross-referenced against EVENTHANDLER_* usage with the comm(1) utility. Manual checking was performed to avoid redundant includes in some drivers where a common os_bsd.h (for example) included sys/eventhandler.h indirectly, but it is possible some of these are redundant with driver-specific headers in ways I didn't notice. (These CUs did not show up as missing eventhandler.h in tinderbox.) X-MFC-With: r347984
Notes
Notes: svn path=/head/; revision=348026
Diffstat (limited to 'sys/mips')
-rw-r--r--sys/mips/atheros/ar531x/ar5315_wdog.c1
-rw-r--r--sys/mips/cavium/octeon_wdog.c1
-rw-r--r--sys/mips/ingenic/jz4780_lcd.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/mips/atheros/ar531x/ar5315_wdog.c b/sys/mips/atheros/ar531x/ar5315_wdog.c
index e41c8a85a24c..26f8374547a6 100644
--- a/sys/mips/atheros/ar531x/ar5315_wdog.c
+++ b/sys/mips/atheros/ar531x/ar5315_wdog.c
@@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$");
#include <sys/systm.h>
#include <sys/watchdog.h>
#include <sys/bus.h>
+#include <sys/eventhandler.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/sysctl.h>
diff --git a/sys/mips/cavium/octeon_wdog.c b/sys/mips/cavium/octeon_wdog.c
index 93658e2465f9..5ee390033796 100644
--- a/sys/mips/cavium/octeon_wdog.c
+++ b/sys/mips/cavium/octeon_wdog.c
@@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$");
#include <sys/systm.h>
#include <sys/watchdog.h>
#include <sys/bus.h>
+#include <sys/eventhandler.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/sysctl.h>
diff --git a/sys/mips/ingenic/jz4780_lcd.c b/sys/mips/ingenic/jz4780_lcd.c
index 77327fc093ac..24415e6c6560 100644
--- a/sys/mips/ingenic/jz4780_lcd.c
+++ b/sys/mips/ingenic/jz4780_lcd.c
@@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/bus.h>
+#include <sys/eventhandler.h>
#include <sys/rman.h>
#include <sys/condvar.h>
#include <sys/kernel.h>