Commit 0a5e66ce authored by Dave Jones's avatar Dave Jones Committed by Jeff Garzik

[PATCH] wavelan uninitalised var.

This seems a little odd, printing out the value of a variable
we haven't read yet.
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent d7623710
...@@ -3822,17 +3822,18 @@ static irqreturn_t wavelan_interrupt(int irq, void *dev_id, struct pt_regs *regs ...@@ -3822,17 +3822,18 @@ static irqreturn_t wavelan_interrupt(int irq, void *dev_id, struct pt_regs *regs
if ((hasr & HASR_MMC_INTR) && (lp->hacr & HACR_MMC_INT_ENABLE)) { if ((hasr & HASR_MMC_INTR) && (lp->hacr & HACR_MMC_INT_ENABLE)) {
u8 dce_status; u8 dce_status;
#ifdef DEBUG_INTERRUPT_ERROR
printk(KERN_INFO
"%s: wavelan_interrupt(): unexpected mmc interrupt: status 0x%04x.\n",
dev->name, dce_status);
#endif
/* /*
* Interrupt from the modem management controller. * Interrupt from the modem management controller.
* This will clear it -- ignored for now. * This will clear it -- ignored for now.
*/ */
mmc_read(ioaddr, mmroff(0, mmr_dce_status), &dce_status, mmc_read(ioaddr, mmroff(0, mmr_dce_status), &dce_status,
sizeof(dce_status)); sizeof(dce_status));
#ifdef DEBUG_INTERRUPT_ERROR
printk(KERN_INFO
"%s: wavelan_interrupt(): unexpected mmc interrupt: status 0x%04x.\n",
dev->name, dce_status);
#endif
} }
/* Check if not controller interrupt */ /* Check if not controller interrupt */
......
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