]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
i2c: at91: change log when dma configuration fails
authorLudovic Desroches <ludovic.desroches@atmel.com>
Fri, 20 May 2016 12:06:31 +0000 (14:06 +0200)
committerWolfram Sang <wsa@the-dreams.de>
Thu, 26 May 2016 18:54:19 +0000 (20:54 +0200)
When the DMA configuration fails, there is a log reporting that we can't
use DMA and indicating the error number. When booting the kernel, it is
annoying to see this error number. Moreover, people can think something
is going wrong. It is not the case, it means that DMA can't be used but
it doesn't prevent to use i2c.

Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-at91.c

index 921d32bfcda8eabbbb3677178734f6b4f614987a..f23372669f770fe81154d116843d34e1b40c9b6a 100644 (file)
@@ -1013,7 +1013,7 @@ static int at91_twi_configure_dma(struct at91_twi_dev *dev, u32 phy_addr)
 
 error:
        if (ret != -EPROBE_DEFER)
-               dev_info(dev->dev, "can't use DMA, error %d\n", ret);
+               dev_info(dev->dev, "can't get DMA channel, continue without DMA support\n");
        if (dma->chan_rx)
                dma_release_channel(dma->chan_rx);
        if (dma->chan_tx)