diff options
author | Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> | 2019-12-17 23:22:30 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-12-18 23:02:02 +0300 |
commit | 0f501c7cde4086d15c396a95c59631b05dbc0351 (patch) | |
tree | e1fe33284b0b2668bb25ad27ccf8825b6785bef0 /sound/soc/sof/intel/apl.c | |
parent | 5bd216c6a6b48d8ed0b3283bf7ba84fc3a566b25 (diff) | |
download | linux-0f501c7cde4086d15c396a95c59631b05dbc0351.tar.xz |
ASoC: SOF: move arch_ops under ops
The current structures are not well designed. We include Xtensa
information from the ACPI and PCI levels, but at the Kconfig/module
level everything Xtensa related is included at the sof/intel level.
Move the arch_ops under ops so that Xtensa is hidden in the DSP ops,
with a structure that follows the Kconfig/module partition.
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20191217202231.18259-8-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sof/intel/apl.c')
-rw-r--r-- | sound/soc/sof/intel/apl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/sof/intel/apl.c b/sound/soc/sof/intel/apl.c index 97831d2c9df6..2483b15699e7 100644 --- a/sound/soc/sof/intel/apl.c +++ b/sound/soc/sof/intel/apl.c @@ -111,6 +111,8 @@ const struct snd_sof_dsp_ops sof_apl_ops = { SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_NO_PERIOD_WAKEUP, + + .arch_ops = &sof_xtensa_arch_ops, }; EXPORT_SYMBOL_NS(sof_apl_ops, SND_SOC_SOF_INTEL_HDA_COMMON); |