Commit 4ab069e5 authored by Barry Song's avatar Barry Song Committed by Mike Frysinger

Blackfin: add dma_disable_irq_nosync() API for irq handlers

Some IRQ handlers need to disable a DMA channel without waiting.
Signed-off-by: default avatarBarry Song <barry.song@analog.com>
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 3750411f
...@@ -262,6 +262,10 @@ static inline void dma_disable_irq(unsigned int channel) ...@@ -262,6 +262,10 @@ static inline void dma_disable_irq(unsigned int channel)
{ {
disable_irq(dma_ch[channel].irq); disable_irq(dma_ch[channel].irq);
} }
static inline void dma_disable_irq_nosync(unsigned int channel)
{
disable_irq_nosync(dma_ch[channel].irq);
}
static inline void dma_enable_irq(unsigned int channel) static inline void dma_enable_irq(unsigned int channel)
{ {
enable_irq(dma_ch[channel].irq); enable_irq(dma_ch[channel].irq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment