mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
net: phy: mdio-bcm-unimac: Remove print of base address
Since commit ad67b74d24
("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>
This commit is contained in:
parent
10585b4342
commit
647aed232a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue