Commit 19c8fc5a authored by Linus Torvalds's avatar Linus Torvalds

Fix up bad time compare from the -dj merge

parent b749567a
......@@ -1313,7 +1313,7 @@ e100_hardware_send_packet(char *buf, int length)
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 */
......
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