mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 15:50:59 +07:00
dma/mic_x100_dma: IS_ERR() vs PTR_ERR() typo
This is harmless because the caller only cares about zero vs non-zero but we should be returning PTR_ERR() here. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
This commit is contained in:
parent
36bf8fc42e
commit
d387ef021a
@ -483,7 +483,7 @@ static int mic_dma_setup_irq(struct mic_dma_chan *ch)
|
|||||||
mic_dma_intr_handler, mic_dma_thread_fn,
|
mic_dma_intr_handler, mic_dma_thread_fn,
|
||||||
"mic dma_channel", ch, ch->ch_num);
|
"mic dma_channel", ch, ch->ch_num);
|
||||||
if (IS_ERR(ch->cookie))
|
if (IS_ERR(ch->cookie))
|
||||||
return IS_ERR(ch->cookie);
|
return PTR_ERR(ch->cookie);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user