From 1c6e740053731732fee8859bb98031bac6e154e4 Mon Sep 17 00:00:00 2001 From: guido Date: Sun, 14 Feb 1999 20:41:01 +0000 Subject: On second thought: do previous fux in pcic.c better. Now we just untimeout the call to inserted() if it exists. --- sys/pccard/pcic.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'sys/pccard/pcic.c') diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index 4514dbc..651c1d5 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -1104,14 +1104,7 @@ pcicintr(void *unused) #endif /* PC98 */ s = splhigh(); for (slot = 0; slot < PCIC_MAX_SLOTS; slot++, sp++) - /* - * don't process this interrupt if we are in suspend - * state; we have different means to (re)initialize the - * slot. - * XXX we shouldn't even get here!? - */ - if (sp->slt && (sp->slt->state != suspend) && - (chg = sp->getb(sp, PCIC_STAT_CHG)) != 0) + if (sp->slt && (chg = sp->getb(sp, PCIC_STAT_CHG)) != 0) if (chg & PCIC_CDTCH) { if ((sp->getb(sp, PCIC_STATUS) & PCIC_CD) == PCIC_CD) { -- cgit v1.1