diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-03-16 11:32:16 +0100 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2020-03-30 18:03:06 +0200 |
commit | a1098c13a3ecd61015f63753c80c212ceaea7fb4 (patch) | |
tree | a08c44b00c1d234992b6bd5a09568ac1ceb6fca5 | |
parent | d5a3c7a4536e1329a758e14340efd0e65252bd3d (diff) | |
download | linux-a1098c13a3ecd61015f63753c80c212ceaea7fb4.tar.gz linux-a1098c13a3ecd61015f63753c80c212ceaea7fb4.tar.bz2 linux-a1098c13a3ecd61015f63753c80c212ceaea7fb4.zip |
pwm: renesas-tpu: Drop confusing registered message
During device probe, the message
TPU PWM -1 registered
is printed.
While the "-1" looks suspicious, it is perfectly normal for a device
instantiated from DT.
Remove the message, as there are no non-DT users left, and other drivers
don't print such messages either.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
-rw-r--r-- | drivers/pwm/pwm-renesas-tpu.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pwm/pwm-renesas-tpu.c b/drivers/pwm/pwm-renesas-tpu.c index 8032acc84161..81ad5a551455 100644 --- a/drivers/pwm/pwm-renesas-tpu.c +++ b/drivers/pwm/pwm-renesas-tpu.c @@ -424,8 +424,6 @@ static int tpu_probe(struct platform_device *pdev) return ret; } - dev_info(&pdev->dev, "TPU PWM %d registered\n", tpu->pdev->id); - return 0; } |