]> git.baikalelectronics.ru Git - kernel.git/commit
mailbox: xgene-slimpro: Fix potential NULL pointer dereference
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Thu, 26 Jul 2018 17:11:39 +0000 (12:11 -0500)
committerJassi Brar <jaswinder.singh@linaro.org>
Fri, 3 Aug 2018 13:26:08 +0000 (18:56 +0530)
commit0c3d44ab5488ada05b27565070a8d17f6c8c807f
tree71bdba1f0683118e899ecfb67e5f08fc5523b279
parenteb7921f7d4d912567557241d07e4a0328e2ddb47
mailbox: xgene-slimpro: 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: 0a609ef7f125 ("mailbox: Add support for APM X-Gene platform mailbox driver")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
drivers/mailbox/mailbox-xgene-slimpro.c