]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ASoC: Lower priority of resume work logging
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 24 Nov 2008 18:08:18 +0000 (18:08 +0000)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 24 Nov 2008 18:09:05 +0000 (18:09 +0000)
Now that the ASoC resume has been punted to a workqueue for a release
cycle without attracting bug reports it should be safe to make the
log messages associated with it debug level, reducing noise and kernel
size in production configurations.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/soc-core.c

index 0d47696ccd07b616b6842e8bb3b1f6d781c77678..dbd92e12e86037528ceefea560d6353654f9ad3d 100644 (file)
@@ -693,7 +693,7 @@ static void soc_resume_deferred(struct work_struct *work)
         * so userspace apps are blocked from touching us
         */
 
-       dev_info(socdev->dev, "starting resume work\n");
+       dev_dbg(socdev->dev, "starting resume work\n");
 
        if (card->resume_pre)
                card->resume_pre(pdev);
@@ -736,7 +736,7 @@ static void soc_resume_deferred(struct work_struct *work)
        if (card->resume_post)
                card->resume_post(pdev);
 
-       dev_info(socdev->dev, "resume work completed\n");
+       dev_dbg(socdev->dev, "resume work completed\n");
 
        /* userspace can access us now we are back as we were before */
        snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0);
@@ -747,10 +747,10 @@ static int soc_resume(struct platform_device *pdev)
 {
        struct snd_soc_device *socdev = platform_get_drvdata(pdev);
 
-       dev_info(socdev->dev, "scheduling resume work\n");
+       dev_dbg(socdev->dev, "scheduling resume work\n");
 
        if (!schedule_work(&socdev->deferred_resume_work))
-               dev_err(socdev->dev, "work item may be lost\n");
+               dev_err(socdev->dev, "resume work item may be lost\n");
 
        return 0;
 }