Commit 88f808f3 authored by David S. Miller's avatar David S. Miller
Browse files

Merge branch 'net-broadcom-Remove-print-of-base-address'



Florian Fainelli says:

====================
net: broadcom: Remove print of base address

Some broadcom MDIO/switch/Ethernet MAC drivers insist on printing the
base register virtual address which has little value.
====================

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 10585b43 62be757f
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -1188,10 +1188,11 @@ static int bcm_sf2_sw_probe(struct platform_device *pdev)
	if (ret)
		goto out_mdio;

	pr_info("Starfighter 2 top: %x.%02x, core: %x.%02x base: 0x%p, IRQs: %d, %d\n",
	dev_info(&pdev->dev,
		 "Starfighter 2 top: %x.%02x, core: %x.%02x, IRQs: %d, %d\n",
		 priv->hw_params.top_rev >> 8, priv->hw_params.top_rev & 0xff,
		 priv->hw_params.core_rev >> 8, priv->hw_params.core_rev & 0xff,
		priv->core, priv->irq0, priv->irq1);
		 priv->irq0, priv->irq1);

	return 0;

+3 −3
Original line number Diff line number Diff line
@@ -2599,10 +2599,10 @@ static int bcm_sysport_probe(struct platform_device *pdev)
	priv->rev = topctrl_readl(priv, REV_CNTL) & REV_MASK;
	dev_info(&pdev->dev,
		 "Broadcom SYSTEMPORT%s " REV_FMT
		 " at 0x%p (irqs: %d, %d, TXQs: %d, RXQs: %d)\n",
		 " (irqs: %d, %d, TXQs: %d, RXQs: %d)\n",
		 priv->is_lite ? " Lite" : "",
		 (priv->rev >> 8) & 0xff, priv->rev & 0xff,
		 priv->base, priv->irq0, priv->irq1, txq, rxq);
		 priv->irq0, priv->irq1, txq, rxq);

	return 0;

+1 −1
Original line number Diff line number Diff line
@@ -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;