aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mlx
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2001-03-01 17:09:09 +0000
committerMark Murray <markm@FreeBSD.org>2001-03-01 17:09:09 +0000
commited34d0ade2848f88c70b745d77380c5069ebdfd6 (patch)
treefadc7b6cd2c258b196b444eb1c16b198554d73b8 /sys/dev/mlx
parent7bf8fc01e983ebc7e114645470a880d0abaa911f (diff)
Notes
Diffstat (limited to 'sys/dev/mlx')
-rw-r--r--sys/dev/mlx/mlx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mlx/mlx.c b/sys/dev/mlx/mlx.c
index 2a952eb71de6..291618ad0652 100644
--- a/sys/dev/mlx/mlx.c
+++ b/sys/dev/mlx/mlx.c
@@ -366,7 +366,7 @@ mlx_attach(struct mlx_softc *sc)
mlx_free(sc);
return(ENXIO);
}
- error = bus_setup_intr(sc->mlx_dev, sc->mlx_irq, INTR_TYPE_BIO, mlx_intr, sc, &sc->mlx_intr);
+ error = bus_setup_intr(sc->mlx_dev, sc->mlx_irq, INTR_TYPE_BIO | INTR_ENTROPY, mlx_intr, sc, &sc->mlx_intr);
if (error) {
device_printf(sc->mlx_dev, "can't set up interrupt\n");
mlx_free(sc);