svn commit: r300410 - head/sys/arm/mv

Svatopluk Kraus skra at FreeBSD.org
Sun May 22 11:42:35 UTC 2016


Author: skra
Date: Sun May 22 11:42:34 2016
New Revision: 300410
URL: https://svnweb.freebsd.org/changeset/base/300410

Log:
  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.

Modified:
  head/sys/arm/mv/mpic.c

Modified: head/sys/arm/mv/mpic.c
==============================================================================
--- head/sys/arm/mv/mpic.c	Sun May 22 09:59:43 2016	(r300409)
+++ head/sys/arm/mv/mpic.c	Sun May 22 11:42:34 2016	(r300410)
@@ -368,6 +368,11 @@ mpic_post_ithread(device_t dev, struct i
 
 	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


More information about the svn-src-all mailing list