]> www.infradead.org Git - users/jedix/linux-maple.git/commit
ASoC: mediatek: mt8188: avoid uninitialized variable use
authorArnd Bergmann <arnd@arndb.de>
Thu, 27 Feb 2025 13:19:01 +0000 (14:19 +0100)
committerMark Brown <broonie@kernel.org>
Thu, 27 Feb 2025 14:06:00 +0000 (14:06 +0000)
commit79ed408b2402e8113aa5a298f3bb9088ede58f6c
tree5c62dff5b181fc94fb7e22bd2ae635a9a9c22f5e
parenta54a659f5cc25e3b23ab19af08d0b23488bd9f4e
ASoC: mediatek: mt8188: avoid uninitialized variable use

The 'msk' variable has no initialization:

sound/soc/mediatek/mt8188/mt8188-dai-dmic.c:311:4: error: variable 'msk' is uninitialized when used here [-Werror,-Wuninitialized]
  311 |                         msk |= PWR2_TOP_CON1_DMIC_FIFO_SOFT_RST_EN(i);
      |                         ^~~

Set it to zero before the loop.

Fixes: c1e42ec04197 ("ASoC: mediatek: mt8188: Add support for DMIC")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: NĂ­colas F. R. A. Prado <nfraprado@collabora.com>
Link: https://patch.msgid.link/20250227131939.1040168-1-arnd@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/mediatek/mt8188/mt8188-dai-dmic.c