Commit 62d90976 authored by Don Fry's avatar Don Fry Committed by Jeff Garzik

[PATCH] pcnet32.c fix compile error

Arrgh.  I sent the wrong diff file.  This one fixes the compile error I
introduced ;-(
parent d0ff8244
......@@ -1518,7 +1518,7 @@ pcnet32_interrupt(int irq, void *dev_id, struct pt_regs * regs)
rap = lp->a.read_rap(ioaddr);
while ((csr0 = lp->a.read_csr (ioaddr, 0)) & 0x8600 && --boguscnt >= 0) {
if (csr == 0xffff) {
if (csr0 == 0xffff) {
break; /* PCMCIA remove happened */
}
/* Acknowledge all of the current interrupt sources ASAP. */
......
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