aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/fsl/mpc5200_psc_i2s.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2012-12-10 03:00:45 -0500
committerTakashi Iwai <tiwai@suse.de>2012-12-10 03:00:45 -0500
commit97768a8e658605a905ba0d908d1b23b475170bed (patch)
tree0431dd9a118c138d164c263033a53502e4c01586 /sound/soc/fsl/mpc5200_psc_i2s.c
parent9621055fbbb190264cb6a8182b70e3f0f917d770 (diff)
parent7a79e94e973639da7bf1b8242d504f9db9e5e848 (diff)
Merge tag 'asoc-3.8' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-next
ASoC: Updates for v3.8 Some incremental updates, nothing too exciting. The biggest block here is the __dev annotation removal stuff from Bill, everything else is the usual driver-specific stuff - a combination of fixes and development. There will be at least more more set of fixes to come but I wanted to get these out ready for the merge window to make sure Bill's stuff makes it in.
Diffstat (limited to 'sound/soc/fsl/mpc5200_psc_i2s.c')
-rw-r--r--sound/soc/fsl/mpc5200_psc_i2s.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/fsl/mpc5200_psc_i2s.c b/sound/soc/fsl/mpc5200_psc_i2s.c
index ba1f0a66358f..b95b966f25a0 100644
--- a/sound/soc/fsl/mpc5200_psc_i2s.c
+++ b/sound/soc/fsl/mpc5200_psc_i2s.c
@@ -153,7 +153,7 @@ static struct snd_soc_dai_driver psc_i2s_dai[] = {{
153 * - Probe/remove operations 153 * - Probe/remove operations
154 * - OF device match table 154 * - OF device match table
155 */ 155 */
156static int __devinit psc_i2s_of_probe(struct platform_device *op) 156static int psc_i2s_of_probe(struct platform_device *op)
157{ 157{
158 int rc; 158 int rc;
159 struct psc_dma *psc_dma; 159 struct psc_dma *psc_dma;
@@ -205,7 +205,7 @@ static int __devinit psc_i2s_of_probe(struct platform_device *op)
205 205
206} 206}
207 207
208static int __devexit psc_i2s_of_remove(struct platform_device *op) 208static int psc_i2s_of_remove(struct platform_device *op)
209{ 209{
210 mpc5200_audio_dma_destroy(op); 210 mpc5200_audio_dma_destroy(op);
211 snd_soc_unregister_dais(&op->dev, ARRAY_SIZE(psc_i2s_dai)); 211 snd_soc_unregister_dais(&op->dev, ARRAY_SIZE(psc_i2s_dai));
@@ -213,7 +213,7 @@ static int __devexit psc_i2s_of_remove(struct platform_device *op)
213} 213}
214 214
215/* Match table for of_platform binding */ 215/* Match table for of_platform binding */
216static struct of_device_id psc_i2s_match[] __devinitdata = { 216static struct of_device_id psc_i2s_match[] = {
217 { .compatible = "fsl,mpc5200-psc-i2s", }, 217 { .compatible = "fsl,mpc5200-psc-i2s", },
218 { .compatible = "fsl,mpc5200b-psc-i2s", }, 218 { .compatible = "fsl,mpc5200b-psc-i2s", },
219 {} 219 {}
@@ -222,7 +222,7 @@ MODULE_DEVICE_TABLE(of, psc_i2s_match);
222 222
223static struct platform_driver psc_i2s_driver = { 223static struct platform_driver psc_i2s_driver = {
224 .probe = psc_i2s_of_probe, 224 .probe = psc_i2s_of_probe,
225 .remove = __devexit_p(psc_i2s_of_remove), 225 .remove = psc_i2s_of_remove,
226 .driver = { 226 .driver = {
227 .name = "mpc5200-psc-i2s", 227 .name = "mpc5200-psc-i2s",
228 .owner = THIS_MODULE, 228 .owner = THIS_MODULE,