Browse Source

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 <tony@atomide.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Tony Lindgren 7 years ago
parent
commit
c2584927b7
1 changed files with 1 additions and 2 deletions
  1. 1 2
      drivers/pinctrl/pinctrl-single.c

+ 1 - 2
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_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);
 	return pinctrl_enable(pcs->pctl);