commit | 7bf3f232f7c78efee8c4d14ad9af8a5a40304916 | [log] [tgz] |
---|---|---|
author | Francois Romieu <romieu@fr.zoreil.com> | Sat Nov 17 16:56:43 2007 +0100 |
committer | David S. Miller <davem@davemloft.net> | Wed Jan 23 03:11:45 2008 -0800 |
tree | 25f4005ec42a3e3e2f3e135536facd9e0db57c42 | |
parent | 11913d30b9fb985b12835037281ae0483be59623 [diff] [blame] |
sis190: mdio operation failure is not correctly detected i ranges from 0 to 100 in the 'for' loop a few lines above. Reported by davem. Signed-off-by: Francois Romieu <romieu@fr.zoreil.com> Cc: K.M. Liu <kmliu@sis.com.tw>
diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index 92e0eb9..342a986 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c
@@ -372,7 +372,7 @@ msleep(1); } - if (i > 999) + if (i > 99) printk(KERN_ERR PFX "PHY command failed !\n"); }