OSDN Git Service

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)
committerMark Brown <broonie@kernel.org>
Mon, 30 Jul 2018 11:02:30 +0000 (12:02 +0100)
commitae1c696a480c67c45fb23b35162183f72c6be0e1
treee5be7f08c77fe543dd36296989de2714f878d6a7
parent4321723648b0abb456f7a9af51bb09a4ec60799d
ASoC: sirf: Fix potential NULL pointer dereference

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>
sound/soc/sirf/sirf-usp.c