ASoC: SOF: core: Print out the value of sof_debug if it is set
authorPeter Ujfalusi <peter.ujfalusi@linux.intel.com>
Fri, 16 Dec 2022 11:54:35 +0000 (13:54 +0200)
committerMark Brown <broonie@kernel.org>
Sun, 25 Dec 2022 23:33:21 +0000 (23:33 +0000)
The sof_debug value is set by the user, developer intentionally.
To save time on figuring out what value has been passed to the kernel by
the user, developer, print it out if it is not 0.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
Link: https://lore.kernel.org/r/20221216115435.28427-1-peter.ujfalusi@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sof/core.c

index 625977a..26a3f7c 100644 (file)
@@ -362,6 +362,9 @@ int snd_sof_device_probe(struct device *dev, struct snd_sof_pdata *plat_data)
        sdev->first_boot = true;
        dev_set_drvdata(dev, sdev);
 
+       if (sof_core_debug)
+               dev_info(dev, "sof_debug value: %#x\n", sof_core_debug);
+
        /* check IPC support */
        if (!(BIT(plat_data->ipc_type) & plat_data->desc->ipc_supported_mask)) {
                dev_err(dev, "ipc_type %d is not supported on this platform, mask is %#x\n",