]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: fsl_asrc: Make error message concise
authorFabio Estevam <fabio.estevam@freescale.com>
Wed, 7 Jan 2015 15:44:33 +0000 (13:44 -0200)
committerMark Brown <broonie@kernel.org>
Thu, 8 Jan 2015 18:34:35 +0000 (18:34 +0000)
Currently the error message uses 'np->full_name' which leads to a very verbose
log that contains the full path of the node.

We can have a concise log by using pdev->name instead.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/fsl/fsl_asrc.c

index 026a80117540be10568d92d2d95f000295c7074c..633ffff8d4d6a0b5ebdb046b4fd4ef0e226e8d4b 100644 (file)
@@ -837,7 +837,7 @@ static int fsl_asrc_probe(struct platform_device *pdev)
 
        irq = platform_get_irq(pdev, 0);
        if (irq < 0) {
-               dev_err(&pdev->dev, "no irq for node %s\n", np->full_name);
+               dev_err(&pdev->dev, "no irq for node %s\n", pdev->name);
                return irq;
        }