Commit 6982faf1 authored by Russell King's avatar Russell King

[PCMCIA] 06-ide

IDE releases the PCMCIA resource to work around the need to have
two conflicting subsystems (IDE and PCMCIA) claim resources.
Since PCMCIA no longer marks its resouces busy, this work around
must be removed.
parent 98c3ca28
......@@ -327,11 +327,6 @@ void ide_config(dev_link_t *link)
CS_CHECK(RequestIRQ, pcmcia_request_irq(handle, &link->irq));
CS_CHECK(RequestConfiguration, pcmcia_request_configuration(handle, &link->conf));
/* deal with brain dead IDE resource management */
release_region(link->io.BasePort1, link->io.NumPorts1);
if (link->io.NumPorts2)
release_region(link->io.BasePort2, link->io.NumPorts2);
/* disable drive interrupts during IDE probe */
outb(0x02, ctl_base);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment