From: Jerome Brunet Date: Thu, 26 Jul 2018 12:45:42 +0000 (+0200) Subject: ASoC: meson: use IRQ_RETVAL in the fifo irq handler X-Git-Tag: v4.19~92^2~2^2~111 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=036e4963bfb2d4513c30efd80e4bd50ff6c79e3e;p=platform%2Fkernel%2Flinux-rpi3.git ASoC: meson: use IRQ_RETVAL in the fifo irq handler Use IRQ_RETVAL instead of the open coded ternary operation. Suggested-by: Takashi Iwai Signed-off-by: Jerome Brunet Signed-off-by: Mark Brown --- diff --git a/sound/soc/meson/axg-fifo.c b/sound/soc/meson/axg-fifo.c index db367d8..3026255 100644 --- a/sound/soc/meson/axg-fifo.c +++ b/sound/soc/meson/axg-fifo.c @@ -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)