Commit 3087974a authored by Florian Fainelli's avatar Florian Fainelli
Browse files

bus: brcmstb_gisb: Remove print of base address



Since commit ad67b74d ("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: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent 78a6f5be
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -407,8 +407,8 @@ static int __init brcmstb_gisb_arb_probe(struct platform_device *pdev)
					       &gisb_panic_notifier);
	}

	dev_info(&pdev->dev, "registered mem: %p, irqs: %d, %d\n",
			gdev->base, timeout_irq, tea_irq);
	dev_info(&pdev->dev, "registered irqs: %d, %d\n",
		 timeout_irq, tea_irq);

	return 0;
}