Skip to content

Commit d6f8168

Browse files
Uwe Kleine-Königbroonie
authored andcommitted
ASoC: Intel: avs: Fix build error on arc, m68k and sparc
On some platforms (i.e. arc, m68k and sparc) __fls returns an int (while on most platforms it returns an unsigned long). This triggers a format warning on these few platforms as the driver uses %ld to print a warning. So explicitly cast the return value to unsigned long to make the warning go away (and so fix allmodconfig build on the affected architectures). Fixes: beed983 ("ASoC: Intel: avs: Machine board registration") Reviewed-by: Cezary Rojewski <cezary.rojewski@intel.com> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Link: https://lore.kernel.org/r/20220529141250.1979827-1-u.kleine-koenig@pengutronix.de Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 5fa66f2 commit d6f8168

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sound/soc/intel/avs/board_selection.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,8 @@ static int avs_register_i2s_board(struct avs_dev *adev, struct snd_soc_acpi_mach
326326
num_ssps = adev->hw_cfg.i2s_caps.ctrl_count;
327327
if (fls(mach->mach_params.i2s_link_mask) > num_ssps) {
328328
dev_err(adev->dev, "Platform supports %d SSPs but board %s requires SSP%ld\n",
329-
num_ssps, mach->drv_name, __fls(mach->mach_params.i2s_link_mask));
329+
num_ssps, mach->drv_name,
330+
(unsigned long)__fls(mach->mach_params.i2s_link_mask));
330331
return -ENODEV;
331332
}
332333

0 commit comments

Comments
 (0)