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 <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
98ab7a0204
commit
33420d6635
1 changed files with 3 additions and 1 deletions
|
@ -863,7 +863,9 @@ static int skl_get_delay_from_lpib(struct hdac_ext_bus *ebus,
|
||||||
else
|
else
|
||||||
delay += hstream->bufsize;
|
delay += hstream->bufsize;
|
||||||
}
|
}
|
||||||
delay = (hstream->bufsize == delay) ? 0 : delay;
|
|
||||||
|
if (hstream->bufsize == delay)
|
||||||
|
delay = 0;
|
||||||
|
|
||||||
if (delay >= hstream->period_bytes) {
|
if (delay >= hstream->period_bytes) {
|
||||||
dev_info(bus->dev,
|
dev_info(bus->dev,
|
||||||
|
|
Loading…
Reference in a new issue