diff options
author | Vinod Koul <vinod.koul@intel.com> | 2016-02-05 09:49:04 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-02-08 19:44:17 +0300 |
commit | 33420d66354134b9369d0984a6ca418752c781a6 (patch) | |
tree | 7a2c833075abd7519c952ad1e6f3ffedb68da0a9 /sound/soc/intel/skylake/skl-pcm.c | |
parent | 98ab7a02046dd239f3f2eb923de0ce117dc29e15 (diff) | |
download | linux-33420d66354134b9369d0984a6ca418752c781a6.tar.xz |
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>
Diffstat (limited to 'sound/soc/intel/skylake/skl-pcm.c')
-rw-r--r-- | sound/soc/intel/skylake/skl-pcm.c | 4 |
1 files changed, 3 insertions, 1 deletions
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, |