[PATCH] Re : [BUG] cardbus/hotplugging still broken in 2.5.56

Yaacov Akiba Slama (ya@slamail.org)
Tue, 14 Jan 2003 20:39:22 +0200


This is a MIME-formatted message. If you see this text it means that your
E-mail software does not support MIME-formatted messages.

--=_courier-18981-1042569964-0001-2
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

Hello all !

I have a xircom (RBEM56G-100) lan+modem, and it seems that the following
patch solves the problem of ressources collisions.
Now, I can use 2.5.58mm1 in my laptop and I am happy.

Yaacov Akiba Slama

--=_courier-18981-1042569964-0001-2
Content-Type: text/plain; name="cardbus.patch"; charset=iso-8859-1
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="cardbus.patch"

--- a/drivers/pcmcia/cardbus.c 2003-01-14 19:38:49.000000000 +0200
+++ b/drivers/pcmcia/cardbus.c 2003-01-14 19:57:13.000000000 +0200
@@ -285,18 +285,19 @@
dev->dev.dma_mask = &dev->dma_mask;

pci_setup_device(dev);
- if (pci_enable_device(dev))
- continue;

strcpy(dev->dev.bus_id, dev->slot_name);

/* FIXME: Do we need to enable the expansion ROM? */
for (r = 0; r < 7; r++) {
struct resource *res = dev->resource + r;
- if (res->flags)
+ if (!res->start && res->end)
pci_assign_resource(dev, r);
}

+ if (pci_enable_device(dev))
+ continue;
+
/* Does this function have an interrupt at all? */
pci_readb(dev, PCI_INTERRUPT_PIN, &irq_pin);
if (irq_pin) {

--=_courier-18981-1042569964-0001-2--