net: phy: mdio-bcm-unimac: Remove print of base address
authorFlorian Fainelli <f.fainelli@gmail.com>
Wed, 20 Mar 2019 16:45:15 +0000 (09:45 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 21 Mar 2019 20:32:35 +0000 (13:32 -0700)
Since commit ad67b74d2469 ("printk: hash addresses printed with %p")
pointers are being hashed when printed. Displaying the virtual memory at
bootup time is not helpful, especially given we use a dev_info() which
already displays the platform device's address.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/mdio-bcm-unimac.c

index 8295bc7..3a59262 100644 (file)
@@ -292,7 +292,7 @@ static int unimac_mdio_probe(struct platform_device *pdev)
 
        platform_set_drvdata(pdev, priv);
 
-       dev_info(&pdev->dev, "Broadcom UniMAC MDIO bus at 0x%p\n", priv->base);
+       dev_info(&pdev->dev, "Broadcom UniMAC MDIO bus\n");
 
        return 0;