]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
ASoC: sirf: Fix potential NULL pointer dereference
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Thu, 26 Jul 2018 20:49:10 +0000 (15:49 -0500)
committerJuerg Haefliger <juergh@canonical.com>
Wed, 24 Jul 2019 01:45:09 +0000 (19:45 -0600)
commit7454fb33dcc5c3771a2809a611abcef0127397b2
treeefb4f2ec05aafad624cf73ae50d7d61bcfec7117
parent5deb357ac2951a008a41ab9199ec38ae8a8750ec
ASoC: sirf: Fix potential NULL pointer dereference

BugLink: https://bugs.launchpad.net/bugs/1835972
commit ae1c696a480c67c45fb23b35162183f72c6be0e1 upstream.

There is a potential execution path in which function
platform_get_resource() returns NULL. If this happens,
we will end up having a NULL pointer dereference.

Fix this by replacing devm_ioremap with devm_ioremap_resource,
which has the NULL check and the memory region request.

This code was detected with the help of Coccinelle.

Cc: stable@vger.kernel.org
Fixes: 2bd8d1d5cf89 ("ASoC: sirf: Add audio usp interface driver")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
sound/soc/sirf/sirf-usp.c