]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
soundwire: qcom: demote probe registration printk
authorJohan Hovold <johan+linaro@kernel.org>
Fri, 23 May 2025 08:53:17 +0000 (10:53 +0200)
committerVinod Koul <vkoul@kernel.org>
Mon, 9 Jun 2025 16:06:49 +0000 (21:36 +0530)
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 <johan+linaro@kernel.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250523085317.11439-1-johan+linaro@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/soundwire/qcom.c

index 295a46dc2be75542eff08ee8b53553c4e79152fc..3265c39e6b514be68fd5d2c5656ab15c6e0a4f93 100644 (file)
@@ -1648,9 +1648,9 @@ static int qcom_swrm_probe(struct platform_device *pdev)
        if (ret)
                goto err_master_add;
 
-       dev_info(dev, "Qualcomm Soundwire controller v%x.%x.%x Registered\n",
-                (ctrl->version >> 24) & 0xff, (ctrl->version >> 16) & 0xff,
-                ctrl->version & 0xffff);
+       dev_dbg(dev, "Qualcomm Soundwire controller v%x.%x.%x registered\n",
+               (ctrl->version >> 24) & 0xff, (ctrl->version >> 16) & 0xff,
+               ctrl->version & 0xffff);
 
        pm_runtime_set_autosuspend_delay(dev, 3000);
        pm_runtime_use_autosuspend(dev);