diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2016-02-29 12:51:07 +0300 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2016-03-03 21:13:01 +0530 |
commit | d387ef021a218ee66fe6b64cf447da09cac5c53b (patch) | |
tree | de709580fc64a6e0ef5fcfdf3c7e7da5675a15d7 /drivers/dma | |
parent | 36bf8fc42ea41110c02f47456dbc4283ee7981dc (diff) | |
download | linux-d387ef021a218ee66fe6b64cf447da09cac5c53b.tar.bz2 |
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>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/mic_x100_dma.c | 2 |
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) mic_dma_intr_handler, mic_dma_thread_fn, "mic dma_channel", ch, ch->ch_num); if (IS_ERR(ch->cookie)) - return IS_ERR(ch->cookie); + return PTR_ERR(ch->cookie); return 0; } |