diff options
Diffstat (limited to 'sys/i4b/layer1/ihfc/i4b_ihfc_pnp.c')
-rw-r--r-- | sys/i4b/layer1/ihfc/i4b_ihfc_pnp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i4b/layer1/ihfc/i4b_ihfc_pnp.c b/sys/i4b/layer1/ihfc/i4b_ihfc_pnp.c index ef2c76cbde0f7..534ccdfe67fae 100644 --- a/sys/i4b/layer1/ihfc/i4b_ihfc_pnp.c +++ b/sys/i4b/layer1/ihfc/i4b_ihfc_pnp.c @@ -206,7 +206,7 @@ ihfc_pnp_probe(device_t dev) /* setup interrupt routine now to avvoid stray * * interrupts. */ - bus_setup_intr(dev, S_IRQ, INTR_TYPE_NET, (void(*)(void*)) + bus_setup_intr(dev, S_IRQ, INTR_TYPE_NET, NULL, (void(*)(void*)) HFC_INTR, sc, &dummy); flag = 1; @@ -298,7 +298,7 @@ ihfc_isa_probe(device_t dev) /* setup interrupt routine now to avvoid stray * * interrupts. */ - bus_setup_intr(dev, S_IRQ, INTR_TYPE_NET, (void(*)(void*)) + bus_setup_intr(dev, S_IRQ, INTR_TYPE_NET, NULL, (void(*)(void*)) HFC_INTR, sc, &dummy); flag = 1; |