diff options
| author | Mark Murray <markm@FreeBSD.org> | 2001-03-03 14:53:50 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2001-03-03 14:53:50 +0000 |
| commit | 3c36743e2dc439de0325b4bc2cc40daeed76dc2c (patch) | |
| tree | 934411732c64ed8ec28e13e1bc36040a63c7cd94 /sys/dev | |
| parent | 61e934f03886fd91cf1c24ae32efcfc629bc1c5e (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/fdc/fdc.c | 3 |
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; |
