coresight: removing gratuitous boot time log messages
authorMathieu Poirier <mathieu.poirier@linaro.org>
Tue, 5 Apr 2016 17:53:52 +0000 (11:53 -0600)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Wed, 1 Jun 2016 21:45:18 +0000 (15:45 -0600)
Removing boot time log for drivers that don't report useful information
other than they came up properly.  The same information can be found in
sysFS once the system has booted and as such doesn't provide any value
in the boot log.

Reported-by: Mark Brown <broonie@linaro.org>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit ef0fd640e3312b8164ec43e1eff24769a7c08b7f)

drivers/hwtracing/coresight/coresight-etb10.c
drivers/hwtracing/coresight/coresight-funnel.c
drivers/hwtracing/coresight/coresight-replicator.c
drivers/hwtracing/coresight/coresight-tmc.c
drivers/hwtracing/coresight/coresight-tpiu.c

index 8bf4429e1fb37280f8c16a1fff48259222b20cf7..2461d5c8c15737e0e0701c1d6c26716e8c194fa7 100644 (file)
@@ -724,7 +724,6 @@ static int etb_probe(struct amba_device *adev, const struct amba_id *id)
        if (ret)
                goto err_misc_register;
 
-       dev_info(dev, "ETB initialized\n");
        return 0;
 
 err_misc_register:
index 0600ca30649d204c7e96ee1f9ecde5b52fcaf003..05df789056ccfc823a103d3bc070bef1eaf46d85 100644 (file)
@@ -221,7 +221,6 @@ static int funnel_probe(struct amba_device *adev, const struct amba_id *id)
        if (IS_ERR(drvdata->csdev))
                return PTR_ERR(drvdata->csdev);
 
-       dev_info(dev, "FUNNEL initialized\n");
        return 0;
 }
 
index 4299c056934048653ac2793eb396c6db18a6fb13..c6982e312e156892eda2126ad061d23a73522939 100644 (file)
@@ -114,7 +114,6 @@ static int replicator_probe(struct platform_device *pdev)
 
        pm_runtime_put(&pdev->dev);
 
-       dev_info(dev, "REPLICATOR initialized\n");
        return 0;
 
 out_disable_pm:
index 1be191f5d39ca5007a2fe61d33527da35495ac94..0a4db1ac52aee39ec8538a2b3e1c1ea0ecc43d3d 100644 (file)
@@ -754,7 +754,6 @@ static int tmc_probe(struct amba_device *adev, const struct amba_id *id)
        if (ret)
                goto err_misc_register;
 
-       dev_info(dev, "TMC initialized\n");
        return 0;
 
 err_misc_register:
index 8fb09d9237abcb47af9642210dbd28e0778ee11d..4e471e2e9d896df24399c9e02cdd06a463ac27be 100644 (file)
@@ -167,7 +167,6 @@ static int tpiu_probe(struct amba_device *adev, const struct amba_id *id)
        if (IS_ERR(drvdata->csdev))
                return PTR_ERR(drvdata->csdev);
 
-       dev_info(dev, "TPIU initialized\n");
        return 0;
 }