]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commit
ASoC: cs42l42: Prevent NULL pointer deref in interrupt handler
authorRichard Fitzgerald <rf@opensource.cirrus.com>
Mon, 25 Oct 2021 11:22:58 +0000 (12:22 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 25 Oct 2021 11:38:24 +0000 (12:38 +0100)
commit2003c44e28ac9759200a78dda20c5f695949e3f4
tree520a265a25e2df821f0fd109deb3e958c54e073b
parent044c114014435fa723e2a0540cb7ef55d2c812da
ASoC: cs42l42: Prevent NULL pointer deref in interrupt handler

The interrupt handling code was getting the struct device* from a
struct snd_soc_component* stored in struct cs42l42_private. If the
interrupt was asserted before ASoC calls component_probe() the
snd_soc_component* will be NULL.

The stored snd_soc_component* is not actually used for anything other
than indirectly getting the struct device*. Remove it, and store the
struct device* in struct cs42l42_private.

Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20211025112258.9282-1-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs42l42.c
sound/soc/codecs/cs42l42.h