From 0b9f4e880807e3cfd22d12b929202e1edcdc577c Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Wed, 25 Jul 2018 19:15:32 -0400 Subject: ar71xx: ag71xx: Add connect message: fixed phy It's a little noisier but makes it obvious when the ar7240 switch was connected to the MDIO bus, and to which phy device (or the failure to do so). Signed-off-by: Daniel F. Dickinson --- .../ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_phy.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_phy.c b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_phy.c index 223340341f..1683fce882 100644 --- a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_phy.c +++ b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_phy.c @@ -97,6 +97,13 @@ static int ag71xx_phy_connect_fixed(struct ag71xx *ag) ag->duplex = pdata->duplex; ag->speed = pdata->speed; + if (!ret) { + dev_info(dev, "connected to fixed PHY at %s [uid=%08x, driver=%s]\n", + phydev_name(ag->phy_dev), + ag->phy_dev->phy_id, ag->phy_dev->drv->name); + } else { + pr_err("Failed to connect to fixed PHY\n"); + } return ret; } -- cgit v1.2.3