diff options
author | Mark Brown <broonie@kernel.org> | 2021-12-17 17:32:45 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-12-17 17:32:45 +0000 |
commit | a92c1cd33520a3e80caa6cea3113eb173a908141 (patch) | |
tree | 002efba9c37e06581c7bfbb7881a8423d60e749b /sound/soc/sof/intel/atom.h | |
parent | f7c7ecaba4690f8156ab4b049c53a121c154fda0 (diff) | |
parent | 60ded273e4c047aec364f70195aced71a4082f90 (diff) |
ASoC: SOF: couple of cleanups
Merge series from Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>:
Guennadi spotted inconsistencies with our 'const' handling, Ajit Kumar
flagged a missing check for a null pointer and we missed the
definition of debug zones.
Diffstat (limited to 'sound/soc/sof/intel/atom.h')
-rw-r--r-- | sound/soc/sof/intel/atom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sof/intel/atom.h b/sound/soc/sof/intel/atom.h index 96a462c7a2e5..b965e5e080a6 100644 --- a/sound/soc/sof/intel/atom.h +++ b/sound/soc/sof/intel/atom.h @@ -65,8 +65,8 @@ int atom_run(struct snd_sof_dev *sdev); int atom_reset(struct snd_sof_dev *sdev); void atom_dump(struct snd_sof_dev *sdev, u32 flags); -void atom_machine_select(struct snd_sof_dev *sdev); -void atom_set_mach_params(const struct snd_soc_acpi_mach *mach, +struct snd_soc_acpi_mach *atom_machine_select(struct snd_sof_dev *sdev); +void atom_set_mach_params(struct snd_soc_acpi_mach *mach, struct snd_sof_dev *sdev); extern struct snd_soc_dai_driver atom_dai[]; |