diff options
Diffstat (limited to 'sys/dev/vx/if_vx_eisa.c')
-rw-r--r-- | sys/dev/vx/if_vx_eisa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vx/if_vx_eisa.c b/sys/dev/vx/if_vx_eisa.c index 459e348..9eb41a4 100644 --- a/sys/dev/vx/if_vx_eisa.c +++ b/sys/dev/vx/if_vx_eisa.c @@ -152,8 +152,8 @@ vx_eisa_attach(device_t dev) if (vx_attach(dev) == 0) goto bad; - if (bus_setup_intr(dev, irq, INTR_TYPE_NET | INTR_MPSAFE, vx_intr, sc, - &sc->vx_intrhand)) + if (bus_setup_intr(dev, irq, INTR_TYPE_NET | INTR_MPSAFE, NULL, + vx_intr, sc, &sc->vx_intrhand)) goto bad_mtx; return (0); |