]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: atmel-ssc-dai: match new method of dai and pcm register
authorBo Shen <voice.shen@atmel.com>
Wed, 14 Nov 2012 10:09:10 +0000 (18:09 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Fri, 16 Nov 2012 01:24:38 +0000 (10:24 +0900)
Remove unneeded code with the new method of dai and pcm register

Signed-off-by: Bo Shen <voice.shen@atmel.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
arch/arm/mach-at91/at91sam9260_devices.c
arch/arm/mach-at91/board-sam9g20ek.c
sound/soc/atmel/sam9g20_wm8731.c

index df7bebf07f101b973557fa15ce31516801e5a38d..6959fd2c6555280f54e578d9e7a200e07ba743e1 100644 (file)
@@ -768,14 +768,6 @@ static inline void configure_ssc_pins(unsigned pins)
                at91_set_A_periph(AT91_PIN_PB21, 1);
 }
 
-static struct platform_device at91sam9260_ssc_dai_device = {
-       .name   = "atmel-ssc-dai",
-       .id     = 0,
-       .dev    = {
-               .parent = &(at91sam9260_ssc_device.dev),
-       },
-};
-
 /*
  * SSC controllers are accessed through library code, instead of any
  * kind of all-singing/all-dancing driver.  For example one could be
@@ -800,7 +792,6 @@ void __init at91_add_device_ssc(unsigned id, unsigned pins)
        }
 
        platform_device_register(pdev);
-       platform_device_register(&at91sam9260_ssc_dai_device);
 }
 
 #else
index 5b6a6f9a94f49f9c6ccc6e670fffa65a9f6c2122..ebdbf42c02c19db171239a3d84add8da572135af 100644 (file)
@@ -353,11 +353,6 @@ static struct i2c_board_info __initdata ek_i2c_devices[] = {
         },
 };
 
-static struct platform_device sam9g20ek_pcm_device = {
-       .name   = "atmel-pcm-audio",
-       .id = -1,
-};
-
 static struct platform_device sam9g20ek_audio_device = {
        .name   = "at91sam9g20ek-audio",
        .id     = -1,
@@ -365,7 +360,6 @@ static struct platform_device sam9g20ek_audio_device = {
 
 static void __init ek_add_device_audio(void)
 {
-       platform_device_register(&sam9g20ek_pcm_device);
        platform_device_register(&sam9g20ek_audio_device);
 }
 
index 228ca6a8e77bf5d1a6d609fa4646c38607e21e5c..4deba189bf109680d97ceecdbc68778706e11dd0 100644 (file)
@@ -179,10 +179,10 @@ static int at91sam9g20ek_wm8731_init(struct snd_soc_pcm_runtime *rtd)
 static struct snd_soc_dai_link at91sam9g20ek_dai = {
        .name = "WM8731",
        .stream_name = "WM8731 PCM",
-       .cpu_dai_name = "atmel-ssc-dai.0",
+       .cpu_dai_name = "at91rm9200_ssc.0",
        .codec_dai_name = "wm8731-hifi",
        .init = at91sam9g20ek_wm8731_init,
-       .platform_name = "atmel-pcm-audio",
+       .platform_name = "at91rm9200_ssc.0",
        .codec_name = "wm8731.0-001b",
        .ops = &at91sam9g20ek_ops,
 };
@@ -204,6 +204,12 @@ static int __devinit at91sam9g20ek_audio_probe(struct platform_device *pdev)
        if (!(machine_is_at91sam9g20ek() || machine_is_at91sam9g20ek_2mmc()))
                return -ENODEV;
 
+       ret = atmel_ssc_set_audio(0);
+       if (ret) {
+               dev_err(&pdev->dev, "ssc channel is not valid\n");
+               return -EINVAL;
+       }
+
        /*
         * Codec MCLK is supplied by PCK0 - set it up.
         */
@@ -241,6 +247,7 @@ err_mclk:
        clk_put(mclk);
        mclk = NULL;
 err:
+       atmel_ssc_put_audio(0);
        return ret;
 }
 
@@ -248,6 +255,7 @@ static int __devexit at91sam9g20ek_audio_remove(struct platform_device *pdev)
 {
        struct snd_soc_card *card = platform_get_drvdata(pdev);
 
+       atmel_ssc_put_audio(0);
        snd_soc_unregister_card(card);
        clk_put(mclk);
        mclk = NULL;