diff options
author | Cezary Rojewski <cezary.rojewski@intel.com> | 2020-02-18 15:39:18 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-02-18 21:52:06 +0000 |
commit | 4a9ce6e4d9fb9c4acc44f647a68e59ea50ff1caf (patch) | |
tree | 4ae7edac530990f5a8d13a3a9b1ff473caad9e80 /include/sound | |
parent | b9759ef2fd1acb0d3f3dce7991c44a4c5e9e68a3 (diff) | |
download | linux-4a9ce6e4d9fb9c4acc44f647a68e59ea50ff1caf.tar.bz2 |
ASoC: SOF: Intel: Account for compress streams when servicing IRQs
Update stream irq handler definition to correctly set hdac_stream
current position when servicing stream interrupts for compress streams.
Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200218143924.10565-4-cezary.rojewski@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/hdaudio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sound/hdaudio.h b/include/sound/hdaudio.h index d4299e146d95..affedc2801c4 100644 --- a/include/sound/hdaudio.h +++ b/include/sound/hdaudio.h @@ -513,6 +513,7 @@ struct hdac_stream { struct snd_pcm_substream *substream; /* assigned substream, * set in PCM open */ + struct snd_compr_stream *cstream; unsigned int format_val; /* format value to be set in the * controller and the codec */ @@ -527,6 +528,7 @@ struct hdac_stream { bool locked:1; bool stripe:1; /* apply stripe control */ + u64 curr_pos; /* timestamp */ unsigned long start_wallclk; /* start + minimum wallclk */ unsigned long period_wallclk; /* wallclk for period */ |