[PATCH 1/3] net: sun8i-emac: Downgrade printf during probe to debug
Samuel Holland
samuel at sholland.org
Fri Jul 15 07:20:56 CEST 2022
This just prints the PHY mode taken from the devicetree. It does not
need to be printed during every boot.
Signed-off-by: Samuel Holland <samuel at sholland.org>
---
drivers/net/sun8i_emac.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/sun8i_emac.c b/drivers/net/sun8i_emac.c
index 2220f84b6978..a4b3492b7647 100644
--- a/drivers/net/sun8i_emac.c
+++ b/drivers/net/sun8i_emac.c
@@ -857,7 +857,7 @@ static int sun8i_emac_eth_of_to_plat(struct udevice *dev)
priv->phyaddr = fdtdec_get_int(gd->fdt_blob, offset, "reg", -1);
pdata->phy_interface = dev_read_phy_mode(dev);
- printf("phy interface%d\n", pdata->phy_interface);
+ debug("phy interface %d\n", pdata->phy_interface);
if (pdata->phy_interface == PHY_INTERFACE_MODE_NA)
return -EINVAL;
--
2.35.1
More information about the U-Boot
mailing list