aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/dma/mic_x100_dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/mic_x100_dma.c b/drivers/dma/mic_x100_dma.c
index 068e920ecb68..1502b24b7c7d 100644
--- a/drivers/dma/mic_x100_dma.c
+++ b/drivers/dma/mic_x100_dma.c
@@ -483,7 +483,7 @@ static int mic_dma_setup_irq(struct mic_dma_chan *ch)
483 mic_dma_intr_handler, mic_dma_thread_fn, 483 mic_dma_intr_handler, mic_dma_thread_fn,
484 "mic dma_channel", ch, ch->ch_num); 484 "mic dma_channel", ch, ch->ch_num);
485 if (IS_ERR(ch->cookie)) 485 if (IS_ERR(ch->cookie))
486 return IS_ERR(ch->cookie); 486 return PTR_ERR(ch->cookie);
487 return 0; 487 return 0;
488} 488}
489 489