aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/ti/davinci_emac.c
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2018-05-21 11:45:54 -0700
committerDavid S. Miller <davem@davemloft.net>2018-05-21 16:17:10 -0400
commit5a04e8f81a4f55ce1c2b7b525744a187c99ba302 (patch)
treead0d3c27005086b520e24abbd676003f01840cd8 /drivers/net/ethernet/ti/davinci_emac.c
parentnet: ethernet: ti: cpsw: Fix cpsw_add_ch_strings() printk format (diff)
downloadlinux-dev-5a04e8f81a4f55ce1c2b7b525744a187c99ba302.tar.xz
linux-dev-5a04e8f81a4f55ce1c2b7b525744a187c99ba302.zip
net: ethernet: davinci_emac: Fix printing of base address
Use %pa which is the correct formatter to print a physical address, instead of %p which is just a pointer. Fixes: a6286ee630f6 ("net: Add TI DaVinci EMAC driver") Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/ti/davinci_emac.c')
-rw-r--r--drivers/net/ethernet/ti/davinci_emac.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c
index abceea802ea1..be0fec17d95d 100644
--- a/drivers/net/ethernet/ti/davinci_emac.c
+++ b/drivers/net/ethernet/ti/davinci_emac.c
@@ -1930,8 +1930,8 @@ static int davinci_emac_probe(struct platform_device *pdev)
if (netif_msg_probe(priv)) {
dev_notice(&pdev->dev, "DaVinci EMAC Probe found device "
- "(regs: %p, irq: %d)\n",
- (void *)priv->emac_base_phys, ndev->irq);
+ "(regs: %pa, irq: %d)\n",
+ &priv->emac_base_phys, ndev->irq);
}
pm_runtime_put(&pdev->dev);