Subject: Re: WDC/ATA PCMCIA and CardBus problems only with flash (i.e., not w/ microdrive)
To: Christos Zoulas <christos@zoulas.com>
From: Bill Sommerfeld <sommerfeld@orchard.arlington.ma.us>
List: tech-kern
Date: 03/09/2002 13:20:54
> I thought that was only wdc specific...
>
> christos
see the following:
intrhandler()
{
handled = 0;
for(ih = handlers_for_this_irq; ih != nil; ih = ih->next) {
handled += ih->handle(ih->arg);
if(handled)
break;
}
if(!handled && irq == WDC_DISK_IRQ) {
ih = find_ata_disk_ih();
wdcfix(ih->arg);
}
}