ASoC: meson: use IRQ_RETVAL in the fifo irq handler
authorJerome Brunet <jbrunet@baylibre.com>
Thu, 26 Jul 2018 12:45:42 +0000 (14:45 +0200)
committerMark Brown <broonie@kernel.org>
Thu, 26 Jul 2018 14:45:42 +0000 (15:45 +0100)
Use IRQ_RETVAL instead of the open coded ternary operation.

Suggested-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/meson/axg-fifo.c

index db367d8..3026255 100644 (file)
@@ -174,7 +174,7 @@ static irqreturn_t axg_fifo_pcm_irq_block(int irq, void *dev_id)
        /* Ack irqs */
        axg_fifo_ack_irq(fifo, status);
 
-       return !status ? IRQ_NONE : IRQ_HANDLED;
+       return IRQ_RETVAL(status);
 }
 
 static int axg_fifo_pcm_open(struct snd_pcm_substream *ss)