]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drivers/tty: serial: remove info message
authorJorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
Wed, 11 Mar 2015 15:20:03 +0000 (11:20 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Mar 2015 15:38:25 +0000 (16:38 +0100)
Unacceptable levels of debug info will happen when the DMA driver defined in
the DT/ACPI is a blacklisted module.

Another cause for log polution would be the defer probing of the DMA driver
taking too long - in which case the message that this commit removes would be
cluttering the logs due to the init daemons activity.

Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/amba-pl011.c

index 7b428e7652c597cf5e7e0357f3ed93680e24a7f0..5a4e9d579585f9c5165839db0fec8e368dfb8133 100644 (file)
@@ -284,7 +284,6 @@ static void pl011_dma_probe(struct uart_amba_port *uap)
        chan = dma_request_slave_channel_reason(dev, "tx");
        if (IS_ERR(chan)) {
                if (PTR_ERR(chan) == -EPROBE_DEFER) {
-                       dev_info(uap->port.dev, "DMA driver not ready\n");
                        uap->dma_probed = false;
                        return;
                }