From: Biju Das Date: Tue, 22 Sep 2020 06:51:41 +0000 (+0100) Subject: net: ravb: Remove writeext function call X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=9275a963d448562a80213639c73e2dc34c6d1835;p=u-boot.git net: ravb: Remove writeext function call The micrel phy driver is already configuring this values from device tree. So remove the redundant phy configuration call from this driver. Signed-off-by: Biju Das Reviewed-by: Lad Prabhakar --- diff --git a/drivers/net/ravb.c b/drivers/net/ravb.c index 886f53ee82..98883cd15b 100644 --- a/drivers/net/ravb.c +++ b/drivers/net/ravb.c @@ -438,8 +438,6 @@ static int ravb_config(struct udevice *dev) writel(mask, eth->iobase + RAVB_REG_ECMR); - phy->drv->writeext(phy, -1, 0x02, 0x08, (0x0f << 5) | 0x19); - return 0; }