]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: SOF: ipc3-topology: Fix clang -Wformat warning
authorJustin Stitt <justinstitt@google.com>
Wed, 3 Aug 2022 20:44:42 +0000 (13:44 -0700)
committerMark Brown <broonie@kernel.org>
Fri, 5 Aug 2022 11:57:27 +0000 (12:57 +0100)
commit41cb8dbbff91b2c8f9011a197a79d1bfce05a02f
tree417af572fcef0eb21dfc5422356be97fedeedb88
parentfa72b83404a0e7fe8972b83103f1b12503d3cebc
ASoC: SOF: ipc3-topology: Fix clang -Wformat warning

When building with Clang we encounter these warnings:
| sound/soc/sof/ipc3-topology.c:2343:4: error: format specifies type
| 'unsigned char' but the argument has type 'int' [-Werror,-Wformat]
|                  SOF_ABI_MAJOR, SOF_ABI_MINOR, SOF_ABI_PATCH);
|                  ^~~~~~~~~~~~~~~^~~~~~~~~~~~~~~^~~~~~~~~~~~~

Use correct format specifier `%d` since args are of type int.

Link: https://github.com/ClangBuiltLinux/linux/issues/378
Reported-by: Nathan Chancellor <nathan@kernel.org>
Suggested-by: Nathan Chancellor <nathan@kernel.org>
Signed-off-by: Justin Stitt <justinstitt@google.com>
Reviewed-by: Nathan Chancellor <nathan@kernel.org>
Acked-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20220803204442.2996580-1-justinstitt@google.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sof/ipc3-topology.c