aboutsummaryrefslogtreecommitdiffstats
path: root/include/sound
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2013-03-27 12:02:24 +0100
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-03-27 23:09:36 +0000
commitef03c9ae967bf1b40bec1456f7e744033853a01d (patch)
tree1738e8469040c7b2afb9be37dc035e8f281a3885 /include/sound
parentASoC: Constify the 'ops' field of snd_soc_platform_driver (diff)
downloadlinux-dev-ef03c9ae967bf1b40bec1456f7e744033853a01d.tar.xz
linux-dev-ef03c9ae967bf1b40bec1456f7e744033853a01d.zip
ASoC: Constify the 'compr_ops' field of snd_soc_platform_driver
The ASoC core does not modify a platform driver's compr_ops structure. Making it const allows ASoC platform drivers to declare their snd_compr_ops struct as const. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/sound')
-rw-r--r--include/sound/soc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index 966a854fc054..f619905f0a65 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -804,7 +804,7 @@ struct snd_soc_platform_driver {
const struct snd_pcm_ops *ops;
/* platform stream compress ops */
- struct snd_compr_ops *compr_ops;
+ const struct snd_compr_ops *compr_ops;
/* platform stream completion event */
int (*stream_event)(struct snd_soc_dapm_context *dapm, int event);