diff options
Diffstat (limited to 'sys/pci/amd.c')
-rw-r--r-- | sys/pci/amd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/pci/amd.c b/sys/pci/amd.c index 8bd550b..302691d 100644 --- a/sys/pci/amd.c +++ b/sys/pci/amd.c @@ -2372,7 +2372,8 @@ amd_attach(device_t dev) irqres = bus_alloc_resource(dev, SYS_RES_IRQ, &rid, 0, ~0, 1, RF_SHAREABLE | RF_ACTIVE); if (irqres == NULL || - bus_setup_intr(dev, irqres, INTR_TYPE_CAM, amd_intr, amd, &ih)) { + bus_setup_intr(dev, irqres, INTR_TYPE_CAM | INTR_ENTROPY, + amd_intr, amd, &ih)) { if (bootverbose) printf("amd%d: unable to register interrupt handler!\n", unit); |