Commit 6032eefc authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Mark Brown

ASoC: SOF: intel: hda: Constify snd_sof_dsp_ops

'struct snd_sof_dsp_ops' is not modified by core code, so it can be made
const for increased code safety.
Tested-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20240426-n-const-ops-var-v2-6-e553fe67ae82@kernel.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 8f2b0d55
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include "hda.h" #include "hda.h"
#include "../sof-audio.h" #include "../sof-audio.h"
struct snd_sof_dsp_ops sof_hda_common_ops = { const struct snd_sof_dsp_ops sof_hda_common_ops = {
/* probe/remove/shutdown */ /* probe/remove/shutdown */
.probe_early = hda_dsp_probe_early, .probe_early = hda_dsp_probe_early,
.probe = hda_dsp_probe, .probe = hda_dsp_probe,
......
...@@ -874,7 +874,7 @@ int hda_dsp_dais_suspend(struct snd_sof_dev *sdev); ...@@ -874,7 +874,7 @@ int hda_dsp_dais_suspend(struct snd_sof_dev *sdev);
/* /*
* Platform Specific HW abstraction Ops. * Platform Specific HW abstraction Ops.
*/ */
extern struct snd_sof_dsp_ops sof_hda_common_ops; extern const struct snd_sof_dsp_ops sof_hda_common_ops;
extern struct snd_sof_dsp_ops sof_skl_ops; extern struct snd_sof_dsp_ops sof_skl_ops;
int sof_skl_ops_init(struct snd_sof_dev *sdev); int sof_skl_ops_init(struct snd_sof_dev *sdev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment