aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fdc
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2001-03-03 14:53:50 +0000
committerMark Murray <markm@FreeBSD.org>2001-03-03 14:53:50 +0000
commit3c36743e2dc439de0325b4bc2cc40daeed76dc2c (patch)
tree934411732c64ed8ec28e13e1bc36040a63c7cd94 /sys/dev/fdc
parent61e934f03886fd91cf1c24ae32efcfc629bc1c5e (diff)
Notes
Diffstat (limited to 'sys/dev/fdc')
-rw-r--r--sys/dev/fdc/fdc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c
index 4fee4f527fa0..04bffb044e81 100644
--- a/sys/dev/fdc/fdc.c
+++ b/sys/dev/fdc/fdc.c
@@ -846,7 +846,8 @@ fdc_attach(device_t dev)
return error;
}
error = BUS_SETUP_INTR(device_get_parent(dev), dev, fdc->res_irq,
- INTR_TYPE_BIO, fdc_intr, fdc, &fdc->fdc_intr);
+ INTR_TYPE_BIO | INTR_ENTROPY, fdc_intr, fdc,
+ &fdc->fdc_intr);
if (error) {
device_printf(dev, "cannot setup interrupt\n");
return error;