Skip to content

Commit 3f44406

Browse files
coresight: removing gratuitous boot time log messages
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)
1 parent ae1e4d1 commit 3f44406

5 files changed

Lines changed: 0 additions & 5 deletions

File tree

drivers/hwtracing/coresight/coresight-etb10.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,6 @@ static int etb_probe(struct amba_device *adev, const struct amba_id *id)
724724
if (ret)
725725
goto err_misc_register;
726726

727-
dev_info(dev, "ETB initialized\n");
728727
return 0;
729728

730729
err_misc_register:

drivers/hwtracing/coresight/coresight-funnel.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@ static int funnel_probe(struct amba_device *adev, const struct amba_id *id)
221221
if (IS_ERR(drvdata->csdev))
222222
return PTR_ERR(drvdata->csdev);
223223

224-
dev_info(dev, "FUNNEL initialized\n");
225224
return 0;
226225
}
227226

drivers/hwtracing/coresight/coresight-replicator.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ static int replicator_probe(struct platform_device *pdev)
114114

115115
pm_runtime_put(&pdev->dev);
116116

117-
dev_info(dev, "REPLICATOR initialized\n");
118117
return 0;
119118

120119
out_disable_pm:

drivers/hwtracing/coresight/coresight-tmc.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,6 @@ static int tmc_probe(struct amba_device *adev, const struct amba_id *id)
754754
if (ret)
755755
goto err_misc_register;
756756

757-
dev_info(dev, "TMC initialized\n");
758757
return 0;
759758

760759
err_misc_register:

drivers/hwtracing/coresight/coresight-tpiu.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ static int tpiu_probe(struct amba_device *adev, const struct amba_id *id)
167167
if (IS_ERR(drvdata->csdev))
168168
return PTR_ERR(drvdata->csdev);
169169

170-
dev_info(dev, "TPIU initialized\n");
171170
return 0;
172171
}
173172

0 commit comments

Comments
 (0)