diff options
author | Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com> | 2019-07-19 20:46:00 +0200 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2019-08-05 09:02:22 +0200 |
commit | da31076f96fc41af41d64e94b9fefe0d21c8ee9c (patch) | |
tree | 61b4265d54e7620eb81d0b5540f6a9451aa30dcb /arch/arc | |
parent | ARCv2: entry: early return from exception need not clear U & DE bits (diff) | |
download | linux-da31076f96fc41af41d64e94b9fefe0d21c8ee9c.tar.xz linux-da31076f96fc41af41d64e94b9fefe0d21c8ee9c.zip |
ARC: fix typo in setup_dma_ops log message
Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc')
-rw-r--r-- | arch/arc/mm/dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/mm/dma.c b/arch/arc/mm/dma.c index 62c210e7ee4c..70a3fbe79fba 100644 --- a/arch/arc/mm/dma.c +++ b/arch/arc/mm/dma.c @@ -101,7 +101,7 @@ void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size, if (is_isa_arcv2() && ioc_enable && coherent) dev->dma_coherent = true; - dev_info(dev, "use %sncoherent DMA ops\n", + dev_info(dev, "use %scoherent DMA ops\n", dev->dma_coherent ? "" : "non"); } |