diff mbox

[RESEND] tty: serial: omap: Remove probe error message

Message ID 1411975782-23709-1-git-send-email-mpa@pengutronix.de (mailing list archive)
State New, archived
Headers show

Commit Message

Markus Pargmann Sept. 29, 2014, 7:29 a.m. UTC
This error message is not necessary. The driver core code will print all
probe error messages. It also resolves some error codes to proper error
messages. For example -EPROBE_DEFER will only be printed as an info message.

This patch removes the error message as the core prints the same
information.

Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
---

Hi,

I am not sure if this patch got lost, so I resend it. I rebased the patch onto
v3.17-rc1 without conflicts.

Best regards,

Markus

 drivers/tty/serial/omap-serial.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Felipe Balbi Sept. 29, 2014, 2:03 p.m. UTC | #1
On Mon, Sep 29, 2014 at 09:29:42AM +0200, Markus Pargmann wrote:
> This error message is not necessary. The driver core code will print all
> probe error messages. It also resolves some error codes to proper error
> messages. For example -EPROBE_DEFER will only be printed as an info message.
> 
> This patch removes the error message as the core prints the same
> information.
> 
> Signed-off-by: Markus Pargmann <mpa@pengutronix.de>

fine by me:

Acked-by: Felipe Balbi <balbi@ti.com>
diff mbox

Patch

diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c
index d017cec8a34a..a153bad142c8 100644
--- a/drivers/tty/serial/omap-serial.c
+++ b/drivers/tty/serial/omap-serial.c
@@ -1733,8 +1733,6 @@  err_add_port:
 	pm_runtime_disable(&pdev->dev);
 err_rs485:
 err_port_line:
-	dev_err(&pdev->dev, "[UART%d]: failure [%s]: %d\n",
-				pdev->id, __func__, ret);
 	return ret;
 }