OSDN Git Service

soc: fsl: cpm1: qmc: Fix assigned timeslot masks
authorHerve Codina via Alsa-devel <alsa-devel@alsa-project.org>
Tue, 7 Mar 2023 14:15:03 +0000 (15:15 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 8 Mar 2023 17:04:53 +0000 (17:04 +0000)
commitf37acbde076d8dbf5e4c694f29760e608fdffe11
tree468caf607b6ec84952c05d5e3a26ff35978d08a6
parent0fb6f518cb46cf8bac7c30c29171050e355cd738
soc: fsl: cpm1: qmc: Fix assigned timeslot masks

The assigned timeslot masks are 64bit values.
In case of 64 timeslots the code uses (1 << 64) which is undefined on a
64bit value. On the PowerPC architecture, this lead to an incorrect
result as (1 << 64) produces the same result as (1 << 0).

Fix the masks values taking care of the 64 timeslots case.

Signed-off-by: Herve Codina <herve.codina@bootlin.com>
Link: https://lore.kernel.org/r/167819855177.26.11163930602844526001@mailman-core.alsa-project.org
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/soc/fsl/qe/qmc.c