]> www.infradead.org Git - users/jedix/linux-maple.git/commit
ASoC: amd: acp: drop bogus NULL check from i2s_irq_handler
authorMurad Masimov <m.masimov@maxima.ru>
Tue, 1 Oct 2024 19:08:39 +0000 (22:08 +0300)
committerMark Brown <broonie@kernel.org>
Wed, 2 Oct 2024 13:02:32 +0000 (14:02 +0100)
commit8cd4e1f087b6906bacbbf8b637cac4e479a9cb34
tree44f3ccb009bffa53c52528cc7e866e5757821aee
parent436bf27903ee56a242bcd373053dd8d1b5d17915
ASoC: amd: acp: drop bogus NULL check from i2s_irq_handler

When i2s_irq_handler is called, it's guaranteed that adata is not NULL,
since IRQ handlers are guaranteed to be provided with a valid data pointer.
Moreover, adata pointer is being dereferenced right before the NULL check,
which makes the check pointless, even if adata could be NULL.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Signed-off-by: Murad Masimov <m.masimov@maxima.ru>
Link: https://patch.msgid.link/20241001190848.711-1-m.masimov@maxima.ru
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/amd/acp/acp-platform.c