diff options
| author | Richard Retanubun <RichardRetanubun@RuggedCom.com> | 2009-05-26 08:29:29 -0400 | 
|---|---|---|
| committer | Ben Warren <biggerbadderben@gmail.com> | 2009-06-15 00:13:55 -0700 | 
| commit | 44578bea14e49035331a8f0e000e935e0d830ff4 (patch) | |
| tree | 8abe0f4bbabb0ee9ab65be52bbbc84d2a606f2c7 | |
| parent | c9a2aab1512fb2d132670fff9c27656d2eb949cd (diff) | |
| download | olio-uboot-2014.01-44578bea14e49035331a8f0e000e935e0d830ff4.tar.xz olio-uboot-2014.01-44578bea14e49035331a8f0e000e935e0d830ff4.zip | |
Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
 From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
Date: Wed, 20 May 2009 18:26:01 -0400
Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
| -rw-r--r-- | drivers/net/mcfmii.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/net/mcfmii.c b/drivers/net/mcfmii.c index 4f1c0a012..4acc29e42 100644 --- a/drivers/net/mcfmii.c +++ b/drivers/net/mcfmii.c @@ -270,7 +270,7 @@ void __mii_init(void)  		if ((status & linkgood) == linkgood)  			break; -		udelay(500); +		udelay(1);  	}  	if (i >= MCFFEC_TOUT_LOOP) {  		printf("Link UP timeout\n"); |