mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
ASoC: Fix typos in Atmel module registration
I wish I had boards which work with unmodified kernels :/ Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
f0752331b8
commit
471716f7ea
2 changed files with 4 additions and 3 deletions
|
@ -483,7 +483,7 @@ static int __devinit atmel_pcm_modinit(void)
|
|||
}
|
||||
module_init(atmel_pcm_modinit);
|
||||
|
||||
static void __exit atmel_pcm_exit(void)
|
||||
static void __exit atmel_pcm_modexit(void)
|
||||
{
|
||||
snd_soc_unregister_platform(&atmel_soc_platform);
|
||||
}
|
||||
|
|
|
@ -776,12 +776,13 @@ static int __devinit atmel_ssc_modinit(void)
|
|||
{
|
||||
return snd_soc_register_dais(atmel_ssc_dai, ARRAY_SIZE(atmel_ssc_dai));
|
||||
}
|
||||
module_init(snd_soc_init);
|
||||
module_init(atmel_ssc_modinit);
|
||||
|
||||
static void __exit snd_soc_exit(void)
|
||||
static void __exit atmel_ssc_modexit(void)
|
||||
{
|
||||
snd_soc_unregister_dais(atmel_ssc_dai, ARRAY_SIZE(atmel_ssc_dai));
|
||||
}
|
||||
module_exit(atmel_ssc_modexit);
|
||||
|
||||
/* Module information */
|
||||
MODULE_AUTHOR("Sedji Gaouaou, sedji.gaouaou@atmel.com, www.atmel.com");
|
||||
|
|
Loading…
Reference in a new issue