summaryrefslogtreecommitdiffstats
path: root/sys/arm/mv
diff options
context:
space:
mode:
authorskra <skra@FreeBSD.org>2016-05-22 11:42:34 +0000
committerskra <skra@FreeBSD.org>2016-05-22 11:42:34 +0000
commit1f47b7e46f6064c2726afb13987cf6040e39f3a4 (patch)
tree83f2a856a40cb8b048645a74d7f1ca4b6e531862 /sys/arm/mv
parenta17f3c7f95db602a70e954565d590fed2bff3f90 (diff)
downloadFreeBSD-src-1f47b7e46f6064c2726afb13987cf6040e39f3a4.zip
FreeBSD-src-1f47b7e46f6064c2726afb13987cf6040e39f3a4.tar.gz
INTRNG - implement pic_post_filter method. This method is fundamental
one and must always be implemented for a PIC. There is no default for it intentionally.
Diffstat (limited to 'sys/arm/mv')
-rw-r--r--sys/arm/mv/mpic.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/arm/mv/mpic.c b/sys/arm/mv/mpic.c
index 1dbcb34..9a9785ce 100644
--- a/sys/arm/mv/mpic.c
+++ b/sys/arm/mv/mpic.c
@@ -368,6 +368,11 @@ mpic_post_ithread(device_t dev, struct intr_irqsrc *isrc)
mpic_enable_intr(dev, isrc);
}
+
+static void
+mpic_post_filter(device_t dev, struct intr_irqsrc *isrc)
+{
+}
#endif
static device_method_t mv_mpic_methods[] = {
@@ -378,6 +383,7 @@ static device_method_t mv_mpic_methods[] = {
DEVMETHOD(pic_disable_intr, mpic_disable_intr),
DEVMETHOD(pic_enable_intr, mpic_enable_intr),
DEVMETHOD(pic_map_intr, mpic_map_intr),
+ DEVMETHOD(pic_post_filter, mpic_post_filter),
DEVMETHOD(pic_post_ithread, mpic_post_ithread),
DEVMETHOD(pic_pre_ithread, mpic_pre_ithread),
#endif
OpenPOWER on IntegriCloud