Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Fri, 5 Apr 2002 01:02:40 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Fri, 5 Apr 2002 01:02:31 -0500 Received: from gans.physik3.uni-rostock.de ([139.30.44.2]:6923 "EHLO gans.physik3.uni-rostock.de") by vger.kernel.org with ESMTP id ; Fri, 5 Apr 2002 01:02:15 -0500 Date: Fri, 5 Apr 2002 08:02:11 +0200 (CEST) From: Tim Schmielau To: Linus Torvalds cc: MartinDalecki , Kernel Mailing List Subject: [patch] Re: Linux-2.5.8-pre1 In-Reply-To: <3CAC2FA4.3040204@evision-ventures.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, 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/