diff options
| author | Warner Losh <imp@FreeBSD.org> | 2004-05-04 02:25:00 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2004-05-04 02:25:00 +0000 |
| commit | 923332f7c56a929b2a0d8f2fbf14c41583a6ea8f (patch) | |
| tree | 1a7c42169f1bfc17d769620322d36a041ce7829c /sys/dev/pccbb | |
| parent | c18b97c630c27e9cf36706ebcad0d5052797ea3e (diff) | |
Notes
Diffstat (limited to 'sys/dev/pccbb')
| -rw-r--r-- | sys/dev/pccbb/pccbb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pccbb/pccbb.c b/sys/dev/pccbb/pccbb.c index 527cef9af108..c57ed874683a 100644 --- a/sys/dev/pccbb/pccbb.c +++ b/sys/dev/pccbb/pccbb.c @@ -2057,8 +2057,8 @@ cbb_resume(device_t self) cbb_set(sc, CBB_SOCKET_EVENT, tmp); /* re-establish the interrupt. */ - if (bus_setup_intr(self, sc->irq_res, INTR_TYPE_AV, cbb_intr, sc, - &sc->intrhand)) { + if (bus_setup_intr(self, sc->irq_res, INTR_TYPE_AV | INTR_MPSAFE, + cbb_intr, sc, &sc->intrhand)) { device_printf(self, "couldn't re-establish interrupt"); bus_release_resource(self, SYS_RES_IRQ, 0, sc->irq_res); bus_release_resource(self, SYS_RES_MEMORY, CBBR_SOCKBASE, |
