diff options
-rw-r--r-- | include/sound/soc.h | 4 | ||||
-rw-r--r-- | sound/soc/soc-core.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h index c84062b22221..5fb70d1e8cce 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h | |||
@@ -371,7 +371,7 @@ int snd_soc_suspend(struct device *dev); | |||
371 | int snd_soc_resume(struct device *dev); | 371 | int snd_soc_resume(struct device *dev); |
372 | int snd_soc_poweroff(struct device *dev); | 372 | int snd_soc_poweroff(struct device *dev); |
373 | int snd_soc_register_platform(struct device *dev, | 373 | int snd_soc_register_platform(struct device *dev, |
374 | struct snd_soc_platform_driver *platform_drv); | 374 | const struct snd_soc_platform_driver *platform_drv); |
375 | void snd_soc_unregister_platform(struct device *dev); | 375 | void snd_soc_unregister_platform(struct device *dev); |
376 | int snd_soc_register_codec(struct device *dev, | 376 | int snd_soc_register_codec(struct device *dev, |
377 | const struct snd_soc_codec_driver *codec_drv, | 377 | const struct snd_soc_codec_driver *codec_drv, |
@@ -823,7 +823,7 @@ struct snd_soc_platform { | |||
823 | const char *name; | 823 | const char *name; |
824 | int id; | 824 | int id; |
825 | struct device *dev; | 825 | struct device *dev; |
826 | struct snd_soc_platform_driver *driver; | 826 | const struct snd_soc_platform_driver *driver; |
827 | struct mutex mutex; | 827 | struct mutex mutex; |
828 | 828 | ||
829 | unsigned int suspended:1; /* platform is suspended */ | 829 | unsigned int suspended:1; /* platform is suspended */ |
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 0ce075c47b25..4d24b5ea3ba7 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c | |||
@@ -3906,7 +3906,7 @@ EXPORT_SYMBOL_GPL(snd_soc_unregister_dais); | |||
3906 | * @platform: platform to register | 3906 | * @platform: platform to register |
3907 | */ | 3907 | */ |
3908 | int snd_soc_register_platform(struct device *dev, | 3908 | int snd_soc_register_platform(struct device *dev, |
3909 | struct snd_soc_platform_driver *platform_drv) | 3909 | const struct snd_soc_platform_driver *platform_drv) |
3910 | { | 3910 | { |
3911 | struct snd_soc_platform *platform; | 3911 | struct snd_soc_platform *platform; |
3912 | 3912 | ||