diff options
| author | Warner Losh <imp@FreeBSD.org> | 2002-02-10 05:04:20 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2002-02-10 05:04:20 +0000 |
| commit | fbf6f7f1d625e83204b2c0306155ba6410a353e7 (patch) | |
| tree | fbd8dddc2a281cc1bf1bd812eceac73424bca3e3 /sys/dev | |
| parent | cfcd3c783e81435f9bceb7413228c791b49fe40f (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/pccard/pccard.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/dev/pccard/pccard.c b/sys/dev/pccard/pccard.c index 2b2ace4a826b2..8981034d6d54d 100644 --- a/sys/dev/pccard/pccard.c +++ b/sys/dev/pccard/pccard.c @@ -1133,13 +1133,8 @@ pccard_intr(void *arg) struct pccard_function *pf = (struct pccard_function*) arg; int reg; - /* - * If we go to resetting a card, we may need a null interrupt hanlder - * to work (since the system may call it before the device can - * establish an ISR) due to interrupt sharing at a higher level. - */ if (pf->intr_handler == NULL) - panic("Null interrupt handler?\n"); + return; /* * XXX The CCR_STATUS register bits used here are |
