diff options
author | Peter Ujfalusi <peter.ujfalusi@linux.intel.com> | 2021-09-16 16:03:08 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-09-17 15:17:47 +0300 |
commit | 0ed66cb7b6d38f0bab061466c1aa0e9f3db45e93 (patch) | |
tree | a6b0381c5de72dbea546dfcb992c7a15fef2dc8b /sound/soc/sof/imx | |
parent | f6b0c731a01fc581fcc4fb227e2d3ad9e0cb31d6 (diff) | |
download | linux-0ed66cb7b6d38f0bab061466c1aa0e9f3db45e93.tar.xz |
ASoC: SOF: Rename sof_arch_ops to dsp_arch_ops
From the name sof_arch_ops one can not decipher that these ops are DSP
architecture ops.
Rename it to dsp_arch_ops and change also the macro to retrieve the DSP
architecture specific ops as well.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20210916130308.7969-1-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sof/imx')
-rw-r--r-- | sound/soc/sof/imx/imx8.c | 4 | ||||
-rw-r--r-- | sound/soc/sof/imx/imx8m.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/sof/imx/imx8.c b/sound/soc/sof/imx/imx8.c index 199ddf706fc4..b75608ef33a8 100644 --- a/sound/soc/sof/imx/imx8.c +++ b/sound/soc/sof/imx/imx8.c @@ -439,7 +439,7 @@ struct snd_sof_dsp_ops sof_imx8_ops = { .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem, /* Firmware ops */ - .arch_ops = &sof_xtensa_arch_ops, + .dsp_arch_ops = &sof_xtensa_arch_ops, /* DAI drivers */ .drv = imx8_dai, @@ -486,7 +486,7 @@ struct snd_sof_dsp_ops sof_imx8x_ops = { .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem, /* Firmware ops */ - .arch_ops = &sof_xtensa_arch_ops, + .dsp_arch_ops = &sof_xtensa_arch_ops, /* DAI drivers */ .drv = imx8_dai, diff --git a/sound/soc/sof/imx/imx8m.c b/sound/soc/sof/imx/imx8m.c index 0335175e8f24..969117e54767 100644 --- a/sound/soc/sof/imx/imx8m.c +++ b/sound/soc/sof/imx/imx8m.c @@ -302,7 +302,7 @@ struct snd_sof_dsp_ops sof_imx8m_ops = { .debugfs_add_region_item = snd_sof_debugfs_add_region_item_iomem, /* Firmware ops */ - .arch_ops = &sof_xtensa_arch_ops, + .dsp_arch_ops = &sof_xtensa_arch_ops, /* DAI drivers */ .drv = imx8m_dai, |