]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
pinctrl: renesas: core: Fix possible null-ptr-deref in sh_pfc_map_resources()
authorYang Yingliang <yangyingliang@huawei.com>
Fri, 29 Apr 2022 08:26:36 +0000 (16:26 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jun 2022 08:26:05 +0000 (10:26 +0200)
commite3a1ad8fd0ac11f4fa1260c23b5db71a25473254
tree1d568a62442aa0d9d9a65df9015c87d470fb7487
parent02a023bf89fc775d21d792d4f64f74db723fd2c9
pinctrl: renesas: core: Fix possible null-ptr-deref in sh_pfc_map_resources()

[ Upstream commit 5376e3d904532e657fd7ca1a9b1ff3d351527b90 ]

It will cause null-ptr-deref when using 'res', if platform_get_resource()
returns NULL, so move using 'res' after devm_ioremap_resource() that
will check it to avoid null-ptr-deref.
And use devm_platform_get_and_ioremap_resource() to simplify code.

Fixes: c7977ec4a336 ("pinctrl: sh-pfc: Convert to platform_get_*()")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20220429082637.1308182-1-yangyingliang@huawei.com
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/pinctrl/renesas/core.c