From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail.phytec.co.uk ([217.6.246.34] helo=root.phytec.de) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Zyyjr-0006EQ-HB for barebox@lists.infradead.org; Wed, 18 Nov 2015 09:09:16 +0000 Received: from idefix.phytec.de (idefix.phytec.de [172.16.0.10]) by root.phytec.de (Postfix) with ESMTP id 5E04DA004EC for ; Wed, 18 Nov 2015 10:09:18 +0100 (CET) From: Stefan Christ Date: Wed, 18 Nov 2015 10:08:43 +0100 Message-Id: <1447837725-21625-1-git-send-email-s.christ@phytec.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "barebox" Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: [PATCH v2 1/3] net: fec: set phy reset time to 1ms To: barebox@lists.infradead.org According to the device tree bindings in dts/Bindings/net/fsl-fec.txt the default phy-reset time is 1ms. Signed-off-by: Stefan Christ --- drivers/net/fec_imx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/fec_imx.c b/drivers/net/fec_imx.c index 78ccb85..f19d046 100644 --- a/drivers/net/fec_imx.c +++ b/drivers/net/fec_imx.c @@ -692,7 +692,7 @@ static int fec_probe(struct device_d *dev) if (ret) goto err_free; - udelay(10); + mdelay(1); gpio_set_value(phy_reset, 1); } -- 1.9.1 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox