Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

firmware: cs_dsp: Log that a bin file was loaded

Change the message at the start of bin file loading from
cs_dsp_dbg() to cs_dsp_info() so that there is confirmation
in the kernel log that a bin file was loaded, and the name
of the file.

Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20230531170158.2744700-1-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Richard Fitzgerald and committed by
Mark Brown
8f4007e8 d0c76d94

+4 -4
+4 -4
drivers/firmware/cirrus/cs_dsp.c
··· 2059 2059 goto out_fw; 2060 2060 } 2061 2061 2062 - cs_dsp_dbg(dsp, "%s: v%d.%d.%d\n", file, 2063 - (le32_to_cpu(hdr->ver) >> 16) & 0xff, 2064 - (le32_to_cpu(hdr->ver) >> 8) & 0xff, 2065 - le32_to_cpu(hdr->ver) & 0xff); 2062 + cs_dsp_info(dsp, "%s: v%d.%d.%d\n", file, 2063 + (le32_to_cpu(hdr->ver) >> 16) & 0xff, 2064 + (le32_to_cpu(hdr->ver) >> 8) & 0xff, 2065 + le32_to_cpu(hdr->ver) & 0xff); 2066 2066 2067 2067 pos = le32_to_cpu(hdr->len); 2068 2068