linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* PCMCIA bug in 2.6.11rc2
@ 2005-02-03  5:14 Josh Green
  0 siblings, 0 replies; only message in thread
From: Josh Green @ 2005-02-03  5:14 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1098 bytes --]

I found a bug in drivers/pcmcia/ds.c for version 2.6.11rc2 (from
linux-mips CVS) that was causing initialization problems with the second
card when I had two PCMCIA wireless cards in my AMD Alchemy DB1100
board.  Here is the patch:

--- ds.c.orig   2005-01-13 06:06:18.000000000 -0800
+++ ds.c        2005-02-02 11:58:29.000000000 -0800
@@ -660,7 +660,7 @@
                        p_dev = pcmcia_get_dev(p_dev);
                        if (!p_dev)
                                continue;
-                       if ((!p_dev->client.state & CLIENT_UNBOUND) ||
+                       if (!(p_dev->client.state & CLIENT_UNBOUND) ||
                            (!p_dev->dev.driver)) {
                                pcmcia_put_dev(p_dev);
                                continue;


Here is a link to the bitkeeper change that caused this:

http://linux.bkbits.net:8080/linux-2.6/diffs/drivers/pcmcia/ds.c@1.99?nav=index.html|src/|src/drivers|src/drivers/pcmcia|hist/drivers/pcmcia/ds.c

Please CC any responses to me, as I am not on the list.
	Best regards,
	Josh Green


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-02-03  5:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-03  5:14 PCMCIA bug in 2.6.11rc2 Josh Green

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).