ASoC: omap-dmic: Correct functional clock name
authorPeter Ujfalusi <peter.ujfalusi@ti.com>
Fri, 26 Oct 2012 10:33:08 +0000 (12:33 +0200)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Sat, 27 Oct 2012 22:00:18 +0000 (23:00 +0100)
We should really use "fck" when asking for the functional clock and not
"dmic_fck".
This way we can ensure that multiple dmic modules can exist in the system.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/omap/omap-dmic.c

index 68f2cd1..5a6aeaf 100644 (file)
@@ -464,9 +464,9 @@ static __devinit int asoc_dmic_probe(struct platform_device *pdev)
 
        mutex_init(&dmic->mutex);
 
-       dmic->fclk = clk_get(dmic->dev, "dmic_fck");
+       dmic->fclk = clk_get(dmic->dev, "fck");
        if (IS_ERR(dmic->fclk)) {
-               dev_err(dmic->dev, "cant get dmic_fck\n");
+               dev_err(dmic->dev, "cant get fck\n");
                return -ENODEV;
        }