[PATCH][Trivial] Fix ftape warning

From: Chris Heath
Date: Fri Aug 22 2003 - 23:33:20 EST


Here's a trivial patch that fixes this warning in 2.6.0-test4:

drivers/char/ftape/lowlevel/fdc-io.c: In function `ftape_interrupt':
drivers/char/ftape/lowlevel/fdc-io.c:1299: warning: unused variable `_tracing'

Chris


--- linux-2.6.0-test4/drivers/char/ftape/lowlevel/fdc-io.c 2003-07-27 16:34:58.000000000 -0400
+++ linux-2.6.0-test4-cdh1/drivers/char/ftape/lowlevel/fdc-io.c 2003-08-22 23:21:36.000000000 -0400
@@ -1305,7 +1305,7 @@
} else {
TRACE(ft_t_bug, "Unexpected ftape interrupt");
}
- return IRQ_RETVAL(handled);
+ TRACE_EXIT IRQ_RETVAL(handled);
}

int fdc_grab_irq_and_dma(void)

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/