diff options
author | Ludovic Desroches <ludovic.desroches@atmel.com> | 2016-05-20 14:06:31 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2016-05-26 20:54:19 +0200 |
commit | 67fed0da5ac23ab6187c362b7ade08339872f718 (patch) | |
tree | c20eb145904ccd5a8d1966b1ce7e63321fe22ec8 | |
parent | 868b2072f09c8a698df8066ca72d30411dcc57d6 (diff) | |
download | linux-67fed0da5ac23ab6187c362b7ade08339872f718.tar.gz linux-67fed0da5ac23ab6187c362b7ade08339872f718.tar.bz2 linux-67fed0da5ac23ab6187c362b7ade08339872f718.zip |
i2c: at91: change log when dma configuration fails
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>
-rw-r--r-- | drivers/i2c/busses/i2c-at91.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-at91.c b/drivers/i2c/busses/i2c-at91.c index 921d32bfcda8..f23372669f77 100644 --- a/drivers/i2c/busses/i2c-at91.c +++ b/drivers/i2c/busses/i2c-at91.c @@ -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) |