Skip to content

Commit 5b8c1f3

Browse files
jhovoldvinodkoul
authored andcommitted
soundwire: qcom: demote probe registration printk
Driver should generally by quiet on successful probe. Demote the Qualcomm controller registration info message to debug level to make boot logs a little less noisy: qcom-soundwire 6ab0000.soundwire: Qualcomm Soundwire controller v2.0.0 Registered qcom-soundwire 6ad0000.soundwire: Qualcomm Soundwire controller v2.0.0 Registered qcom-soundwire 6b10000.soundwire: Qualcomm Soundwire controller v2.0.0 Registered qcom-soundwire 6d30000.soundwire: Qualcomm Soundwire controller v2.0.0 Registered Signed-off-by: Johan Hovold <[email protected]> Reviewed-by: Dmitry Baryshkov <[email protected]> Acked-by: Srinivas Kandagatla <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent 0cbce86 commit 5b8c1f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/soundwire/qcom.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1648,9 +1648,9 @@ static int qcom_swrm_probe(struct platform_device *pdev)
16481648
if (ret)
16491649
goto err_master_add;
16501650

1651-
dev_info(dev, "Qualcomm Soundwire controller v%x.%x.%x Registered\n",
1652-
(ctrl->version >> 24) & 0xff, (ctrl->version >> 16) & 0xff,
1653-
ctrl->version & 0xffff);
1651+
dev_dbg(dev, "Qualcomm Soundwire controller v%x.%x.%x registered\n",
1652+
(ctrl->version >> 24) & 0xff, (ctrl->version >> 16) & 0xff,
1653+
ctrl->version & 0xffff);
16541654

16551655
pm_runtime_set_autosuspend_delay(dev, 3000);
16561656
pm_runtime_use_autosuspend(dev);

0 commit comments

Comments
 (0)