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.
This commit is contained in:
skra 2016-05-22 11:42:34 +00:00
parent a17f3c7f95
commit 1f47b7e46f

View File

@ -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