summaryrefslogtreecommitdiff
path: root/sound/soc/intel/avs/core.c
diff options
context:
space:
mode:
authorCezary Rojewski <cezary.rojewski@intel.com>2024-02-20 14:50:28 +0300
committerMark Brown <broonie@kernel.org>2024-02-20 16:19:53 +0300
commita8f858d98f016a0209edaf1518fd45a5e5c62d47 (patch)
treeba3517ce8a46bbbe9d7d219405cd692706f66e9a /sound/soc/intel/avs/core.c
parente1a0cbae52d0bf3cb350eba5c95c46c14a5bcda4 (diff)
downloadlinux-a8f858d98f016a0209edaf1518fd45a5e5c62d47.tar.xz
ASoC: Intel: avs: Prefix SKL/APL-specific members
Prefix members that are platform-specific with 'avs_' to improve code cohesiveness and reduce the chance for naming-conflics with other drivers. Reviewed-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com> Link: https://msgid.link/r/20240220115035.770402-4-cezary.rojewski@intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/avs/core.c')
-rw-r--r--sound/soc/intel/avs/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/intel/avs/core.c b/sound/soc/intel/avs/core.c
index 30baaa5de016..60667d4db7f8 100644
--- a/sound/soc/intel/avs/core.c
+++ b/sound/soc/intel/avs/core.c
@@ -738,7 +738,7 @@ static const struct avs_spec skl_desc = {
.hotfix = 0,
.build = 4732,
},
- .dsp_ops = &skl_dsp_ops,
+ .dsp_ops = &avs_skl_dsp_ops,
.core_init_mask = 1,
.attributes = AVS_PLATATTR_CLDMA,
.sram_base_offset = SKL_ADSP_SRAM_BASE_OFFSET,
@@ -754,7 +754,7 @@ static const struct avs_spec apl_desc = {
.hotfix = 1,
.build = 4323,
},
- .dsp_ops = &apl_dsp_ops,
+ .dsp_ops = &avs_apl_dsp_ops,
.core_init_mask = 3,
.attributes = AVS_PLATATTR_IMR,
.sram_base_offset = APL_ADSP_SRAM_BASE_OFFSET,