From: Vinod Koul Date: Fri, 5 Feb 2016 06:49:04 +0000 (+0530) Subject: ASoC: Intel: Skylake: Update the delay check X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=33420d66354134b9369d0984a6ca418752c781a6;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git ASoC: Intel: Skylake: Update the delay check Delay check was using ternary operator, it can be simplified to simple if condition, so update it Signed-off-by: Vinod Koul Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/skylake/skl-pcm.c b/sound/soc/intel/skylake/skl-pcm.c index b6e6b61d10ec..cc9a5599ab9d 100644 --- a/sound/soc/intel/skylake/skl-pcm.c +++ b/sound/soc/intel/skylake/skl-pcm.c @@ -863,7 +863,9 @@ static int skl_get_delay_from_lpib(struct hdac_ext_bus *ebus, else delay += hstream->bufsize; } - delay = (hstream->bufsize == delay) ? 0 : delay; + + if (hstream->bufsize == delay) + delay = 0; if (delay >= hstream->period_bytes) { dev_info(bus->dev,