diff mbox

pinctrl: sunxi: Remove stray printk call in sun5i driver's probe function

Message ID 20170201160209.9261-1-wens@csie.org (mailing list archive)
State Mainlined, archived
Headers show

Commit Message

Chen-Yu Tsai Feb. 1, 2017, 4:02 p.m. UTC
There is a stray printk call in the new sun5i pinctrl driver's probe
function.

Remove it.

Signed-off-by: Chen-Yu Tsai <wens@csie.org>
---
 drivers/pinctrl/sunxi/pinctrl-sun5i.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Maxime Ripard Feb. 2, 2017, 8:13 a.m. UTC | #1
On Thu, Feb 02, 2017 at 12:02:09AM +0800, Chen-Yu Tsai wrote:
> There is a stray printk call in the new sun5i pinctrl driver's probe
> function.
> 
> Remove it.
> 
> Signed-off-by: Chen-Yu Tsai <wens@csie.org>

Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>

Maxime
Linus Walleij Feb. 6, 2017, 10:08 a.m. UTC | #2
On Wed, Feb 1, 2017 at 5:02 PM, Chen-Yu Tsai <wens@csie.org> wrote:

> There is a stray printk call in the new sun5i pinctrl driver's probe
> function.
>
> Remove it.
>
> Signed-off-by: Chen-Yu Tsai <wens@csie.org>

Patch applied.

Yours,
Linus Walleij
diff mbox

Patch

diff --git a/drivers/pinctrl/sunxi/pinctrl-sun5i.c b/drivers/pinctrl/sunxi/pinctrl-sun5i.c
index c8a94323ce8b..c7d44eeae704 100644
--- a/drivers/pinctrl/sunxi/pinctrl-sun5i.c
+++ b/drivers/pinctrl/sunxi/pinctrl-sun5i.c
@@ -719,8 +719,6 @@  static int sun5i_pinctrl_probe(struct platform_device *pdev)
 {
 	unsigned long variant = (unsigned long)of_device_get_match_data(&pdev->dev);
 
-	printk("prout\n");
-
 	return sunxi_pinctrl_init_with_variant(pdev, &sun5i_pinctrl_data,
 					       variant);
 }