summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@freescale.com>2014-10-27 14:49:39 -0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-05 20:03:20 -0800
commitf1f2b6e497170a6ab83aeb781688a65c25621836 (patch)
treef418aff6e92599d139b67d5bf427e24a64710fce
parentcb0f0a5ff43c1ae05c6d696857c42dceb0cda7f8 (diff)
serial: imx: Remove unneeded OOM error message
When kzalloc() fails the core MM will already complain about it, so there is no need to have the error message locally. Remove the unneeded error message. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/imx.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c
index e7dc2102bb27..9e8685e1061a 100644
--- a/drivers/tty/serial/imx.c
+++ b/drivers/tty/serial/imx.c
@@ -991,7 +991,6 @@ static int imx_uart_dma_init(struct imx_port *sport)
sport->rx_buf = kzalloc(PAGE_SIZE, GFP_KERNEL);
if (!sport->rx_buf) {
- dev_err(dev, "cannot alloc DMA buffer.\n");
ret = -ENOMEM;
goto err;
}