aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/freescale
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/arm/freescale
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/arm/freescale')
-rw-r--r--sys/arm/freescale/imx/imx6_ipu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/arm/freescale/imx/imx6_ipu.c b/sys/arm/freescale/imx/imx6_ipu.c
index 426ef474ef70..831a13988bba 100644
--- a/sys/arm/freescale/imx/imx6_ipu.c
+++ b/sys/arm/freescale/imx/imx6_ipu.c
@@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$");
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/clock.h>
+#include <sys/eventhandler.h>
#include <sys/time.h>
#include <sys/bus.h>
#include <sys/lock.h>