Commit ec61dbaf authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] Fix ftape warning

From: Chris Heath <chris@heathens.co.nz>

Here's a patch which fixes this warning:

drivers/char/ftape/lowlevel/fdc-io.c: In function `ftape_interrupt':
drivers/char/ftape/lowlevel/fdc-io.c:1299: warning: unused variable `_tracing'
parent 9fd4c892
...@@ -1305,7 +1305,7 @@ static irqreturn_t ftape_interrupt(int irq, void *dev_id, struct pt_regs *regs) ...@@ -1305,7 +1305,7 @@ static irqreturn_t ftape_interrupt(int irq, void *dev_id, struct pt_regs *regs)
} else { } else {
TRACE(ft_t_bug, "Unexpected ftape interrupt"); TRACE(ft_t_bug, "Unexpected ftape interrupt");
} }
return IRQ_RETVAL(handled); TRACE_EXIT IRQ_RETVAL(handled);
} }
int fdc_grab_irq_and_dma(void) int fdc_grab_irq_and_dma(void)
......
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