From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Retanubun Date: Tue, 26 May 2009 08:29:29 -0400 Subject: [U-Boot] Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter. In-Reply-To: <4A1B86EA.9090107@gmail.com> References: <4A042AF5.7050408@RuggedCom.com> <4791E710007FEB4BBF83775D787F462F08916819@az33exm22.fsl.freescale.net> <4A1484FF.2060807@RuggedCom.com> <4A1B86EA.9090107@gmail.com> Message-ID: <4A1BE0A9.8000601@RuggedCom.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001 From: Richard Retanubun 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 --- 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 4f1c0a0..4acc29e 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"); -- 1.6.2.1