diff options
| author | Francois Romieu <romieu@fr.zoreil.com> | 2007-11-17 10:56:43 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2008-01-23 06:11:45 -0500 |
| commit | 7bf3f232f7c78efee8c4d14ad9af8a5a40304916 (patch) | |
| tree | 25f4005ec42a3e3e2f3e135536facd9e0db57c42 | |
| parent | 11913d30b9fb985b12835037281ae0483be59623 (diff) | |
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>
| -rw-r--r-- | drivers/net/sis190.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sis190.c b/drivers/net/sis190.c index 92e0eb95ff8c..342a986214c8 100644 --- a/drivers/net/sis190.c +++ b/drivers/net/sis190.c | |||
| @@ -372,7 +372,7 @@ static void __mdio_cmd(void __iomem *ioaddr, u32 ctl) | |||
| 372 | msleep(1); | 372 | msleep(1); |
| 373 | } | 373 | } |
| 374 | 374 | ||
| 375 | if (i > 999) | 375 | if (i > 99) |
| 376 | printk(KERN_ERR PFX "PHY command failed !\n"); | 376 | printk(KERN_ERR PFX "PHY command failed !\n"); |
| 377 | } | 377 | } |
| 378 | 378 | ||
