From: Michal Simek Date: Mon, 8 Feb 2016 12:54:05 +0000 (+0100) Subject: net: axi_emac: Report phy-node error message permanently X-Git-Tag: v2016.05-rc1~34^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ceb04e1a5d9fb956190d9f5bcc32da0f9291d416;p=platform%2Fkernel%2Fu-boot.git net: axi_emac: Report phy-node error message permanently Do not use debug() when printing error message. Use printf instead. Signed-off-by: Michal Simek --- diff --git a/drivers/net/xilinx_axi_emac.c b/drivers/net/xilinx_axi_emac.c index 3d69bed..5de06ef 100644 --- a/drivers/net/xilinx_axi_emac.c +++ b/drivers/net/xilinx_axi_emac.c @@ -715,7 +715,7 @@ static int axi_emac_ofdata_to_platdata(struct udevice *dev) if (phy_mode) pdata->phy_interface = phy_get_interface_by_name(phy_mode); if (pdata->phy_interface == -1) { - debug("%s: Invalid PHY interface '%s'\n", __func__, phy_mode); + printf("%s: Invalid PHY interface '%s'\n", __func__, phy_mode); return -EINVAL; } priv->interface = pdata->phy_interface;