here comes the patch for a stupid mistake of mine that crept into
2.5.8-pre1 but was spotted by Martin Dalecki.
Please apply (to cover my horrible stupidity).
Thanks,
Tim
--- linux-2.5.8-pre1/arch/cris/drivers/ethernet.c.orig Fri Apr 5 07:42:20 2002
+++ linux-2.5.8-pre1/arch/cris/drivers/ethernet.c Fri Apr 5 07:47:11 2002
@@ -1313,7 +1313,7 @@
static void
e100_clear_network_leds(unsigned long dummy)
{
- if (led_active && jiffies > time_after(jiffies, led_next_time)) {
+ if (led_active && time_after(jiffies, led_next_time)) {
e100_set_network_leds(NO_NETWORK_ACTIVITY);
/* Set the earliest time we may set the LED */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/