diff options
| author | Mark Murray <markm@FreeBSD.org> | 2001-03-01 17:09:09 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2001-03-01 17:09:09 +0000 |
| commit | ed34d0ade2848f88c70b745d77380c5069ebdfd6 (patch) | |
| tree | fadc7b6cd2c258b196b444eb1c16b198554d73b8 /sys/dev/amr/amr_pci.c | |
| parent | 7bf8fc01e983ebc7e114645470a880d0abaa911f (diff) | |
Notes
Diffstat (limited to 'sys/dev/amr/amr_pci.c')
| -rw-r--r-- | sys/dev/amr/amr_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/amr/amr_pci.c b/sys/dev/amr/amr_pci.c index 26b9ff897345..e98ca4baecaf 100644 --- a/sys/dev/amr/amr_pci.c +++ b/sys/dev/amr/amr_pci.c @@ -196,7 +196,7 @@ amr_pci_attach(device_t dev) device_printf(sc->amr_dev, "can't allocate interrupt\n"); goto out; } - if (bus_setup_intr(sc->amr_dev, sc->amr_irq, INTR_TYPE_BIO, amr_pci_intr, sc, &sc->amr_intr)) { + if (bus_setup_intr(sc->amr_dev, sc->amr_irq, INTR_TYPE_BIO | INTR_ENTROPY, amr_pci_intr, sc, &sc->amr_intr)) { device_printf(sc->amr_dev, "can't set up interrupt\n"); goto out; } |
