From: Takashi Iwai Date: Tue, 5 Nov 2013 17:40:04 +0000 (+0100) Subject: ASoC: s6000: Use WARN_ON() instead of BUG_ON() X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4a318f1e6c4331633a91ad67b782860c76d8894b;p=linux-beck.git ASoC: s6000: Use WARN_ON() instead of BUG_ON() Use WARN_ON() and handle the error cases accordingly. Signed-off-by: Takashi Iwai Signed-off-by: Mark Brown --- diff --git a/sound/soc/s6000/s6000-pcm.c b/sound/soc/s6000/s6000-pcm.c index d0740a762963..5cfaa5464eba 100644 --- a/sound/soc/s6000/s6000-pcm.c +++ b/sound/soc/s6000/s6000-pcm.c @@ -90,7 +90,8 @@ static void s6000_pcm_enqueue_dma(struct snd_pcm_substream *substream) return; } - BUG_ON(period_size & 15); + if (WARN_ON(period_size & 15)) + return; s6dmac_put_fifo(DMA_MASK_DMAC(channel), DMA_INDEX_CHNL(channel), src, dst, period_size);