summaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorFabio Estevam <festevam@denx.de>2023-09-28 11:58:42 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-10-03 14:59:04 +0200
commit6905ab83b7b429bfe856536982ae00c1f594ba1f (patch)
tree6cb76dac24ce1669c506a93dfdea2fa6522aecbb /drivers/tty
parentbb5ab77e8543f5c3601635bc2fc40b794add7143 (diff)
downloadlinux-6905ab83b7b429bfe856536982ae00c1f594ba1f.tar.gz
linux-6905ab83b7b429bfe856536982ae00c1f594ba1f.tar.bz2
linux-6905ab83b7b429bfe856536982ae00c1f594ba1f.zip
serial: amba-pl011: Do not complain when DMA is absent
Many SoCs do not integrate DMA for the amba pl011 UART, causing the following message on boot: uart-pl011 80074000.serial: no DMA platform data The UART still works in PIO, so better not to print such message that may confuse people by causing them to think that there is something wrong with the UART. Change the message to debug level. Signed-off-by: Fabio Estevam <festevam@denx.de> Link: https://lore.kernel.org/r/20230928145842.466933-1-festevam@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/amba-pl011.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c
index 41eabad4c94b..61cc24cd90e4 100644
--- a/drivers/tty/serial/amba-pl011.c
+++ b/drivers/tty/serial/amba-pl011.c
@@ -421,7 +421,7 @@ static void pl011_dma_probe(struct uart_amba_port *uap)
/* We need platform data */
if (!plat || !plat->dma_filter) {
- dev_info(uap->port.dev, "no DMA platform data\n");
+ dev_dbg(uap->port.dev, "no DMA platform data\n");
return;
}