From: Tony Lindgren Date: Thu, 14 Dec 2017 16:51:15 +0000 (-0800) Subject: pinctrl: single: Remove invalid message X-Git-Tag: v4.16-rc1~90^2~52 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=c2584927b7c89b0f28f5776e65a26944a07dffd3;p=uclinux-h8%2Flinux.git pinctrl: single: Remove invalid message Pinctrl single should just show how many pins were found, the physical address is already in the dev information. So let's remove the wrong information that claims to show the physical address but really prints a virtual address that is now hashed. Signed-off-by: Tony Lindgren Signed-off-by: Linus Walleij --- diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c index e6cd8de793e2..6f95e6a74e72 100644 --- a/drivers/pinctrl/pinctrl-single.c +++ b/drivers/pinctrl/pinctrl-single.c @@ -1774,8 +1774,7 @@ static int pcs_probe(struct platform_device *pdev) dev_warn(pcs->dev, "initialized with no interrupts\n"); } - dev_info(pcs->dev, "%i pins at pa %p size %u\n", - pcs->desc.npins, pcs->base, pcs->size); + dev_info(pcs->dev, "%i pins, size %u\n", pcs->desc.npins, pcs->size); return pinctrl_enable(pcs->pctl);