ASoC: samsung: Fix compilation error on S3C2440
authorAlexey Galakhov <agalakhov@gmail.com>
Wed, 30 Jan 2013 09:35:22 +0000 (15:35 +0600)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Thu, 31 Jan 2013 06:48:39 +0000 (14:48 +0800)
The commit a08485d8 ("ASoC: Samsung: Do not register samsung audio dma
device as pdev") introduced compilation error.

Combination of CONFIG_CPU_S3C2440 and CONFIG_SND_S3C24XX_I2S
caused undefined symbols 's3c_i2sv2_register_dai' and 's3c2412_i2s_dai'
in sound/soc/samsung/s3c24xx-i2s.c.

This patch fixes the problem and makes S3C2440 I2S usable again. It does
not affect S3C2412 (aka I2S-v2).

Signed-off-by: Alexey Galakhov <agalakhov@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/samsung/s3c24xx-i2s.c

index ee10e8704e976f61f7ea6332416946af5471f59a..13f6dd1ceb00ae2d48febed247630af3e56ecc38 100644 (file)
@@ -469,7 +469,7 @@ static int s3c24xx_iis_dev_probe(struct platform_device *pdev)
 {
        int ret = 0;
 
-       ret = s3c_i2sv2_register_dai(&pdev->dev, -1, &s3c2412_i2s_dai);
+       ret = snd_soc_register_dai(&pdev->dev, &s3c24xx_i2s_dai);
        if (ret) {
                pr_err("failed to register the dai\n");
                return ret;
This page took 0.043025 seconds and 5 git commands to generate.