mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
net: zynq_gem: Move ethernet info print statement
As we are not reading the PHY address in case of CONFIG_ETH_PHY in plat function, phy address always prints as -1. So move the ethernet info print statement to probe function, to display proper phy address. Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com> Link: https://lore.kernel.org/r/f6efc6719d767b1bebe65987c22c6d52329f4225.1648631275.git.michal.simek@xilinx.com
This commit is contained in:
parent
ccc8656f7f
commit
fc6e56283e
1 changed files with 4 additions and 4 deletions
|
@ -802,6 +802,10 @@ static int zynq_gem_probe(struct udevice *dev)
|
|||
return ret;
|
||||
}
|
||||
|
||||
printf("\nZYNQ GEM: %lx, mdio bus %lx, phyaddr %d, interface %s\n",
|
||||
(ulong)priv->iobase, (ulong)priv->mdiobase, priv->phydev->addr,
|
||||
phy_string_for_interface(priv->interface));
|
||||
|
||||
return ret;
|
||||
|
||||
err3:
|
||||
|
@ -884,10 +888,6 @@ static int zynq_gem_of_to_plat(struct udevice *dev)
|
|||
|
||||
priv->int_pcs = dev_read_bool(dev, "is-internal-pcspma");
|
||||
|
||||
printf("\nZYNQ GEM: %lx, mdio bus %lx, phyaddr %d, interface %s\n",
|
||||
(ulong)priv->iobase, (ulong)priv->mdiobase, priv->phyaddr,
|
||||
phy_string_for_interface(priv->interface));
|
||||
|
||||
priv->clk_en_info = dev_get_driver_data(dev);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue