[PATCH] pinctrl: s32cc: Remove const from groups allocation type

Kees Cook kees at kernel.org
Thu Sep 17 14:14:53 PDT 2026


From: Kees Cook <kees+treewide at kernel.org>

In preparation for making the devm_kmalloc family of allocators type
aware, we need to make sure that the returned type from the allocation
matches the type of the variable being assigned. (Before, the allocator
would always return "void *", which can be implicitly cast to any
pointer type.)

The assigned type is "const char **", but the converted allocation type
would be "const char * const *", as the size was taken from
"*func->groups", whose type "const char * const" is const qualified. As
there is no general way to remove const qualifiers, take the size from
the assignment target instead. No change in allocation size results.

Build tested ARCH=arm64 allmodconfig with GCC aarch64-linux-gnu 16.1.0:
drivers/pinctrl/nxp/pinctrl-s32cc.o

Assisted-by: LLM coccinelle
Signed-off-by: Kees Cook <kees+treewide at kernel.org>
---
Cc: Chester Lin <chester62515 at gmail.com>
Cc: Matthias Brugger <mbrugger at suse.com>
Cc: Ghennadi Procopciuc <ghennadi.procopciuc at oss.nxp.com>
Cc: NXP S32 Linux Team <s32 at nxp.com>
Cc: Dong Aisheng <aisheng.dong at nxp.com>
Cc: Fabio Estevam <festevam at gmail.com>
Cc: Frank Li <Frank.Li at nxp.com>
Cc: Jacky Bai <ping.bai at nxp.com>
Cc: Pengutronix Kernel Team <kernel at pengutronix.de>
Cc: Linus Walleij <linusw at kernel.org>
Cc: <linux-arm-kernel at lists.infradead.org>
Cc: <linux-gpio at vger.kernel.org>
---
 drivers/pinctrl/nxp/pinctrl-s32cc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pinctrl/nxp/pinctrl-s32cc.c b/drivers/pinctrl/nxp/pinctrl-s32cc.c
index 4b40770a38b7..9c4ebae22674 100644
--- a/drivers/pinctrl/nxp/pinctrl-s32cc.c
+++ b/drivers/pinctrl/nxp/pinctrl-s32cc.c
@@ -825,7 +825,7 @@ static int s32_pinctrl_parse_functions(struct device_node *np,
 				     "No groups defined in %pOF\n", np);
 
 	groups = devm_kcalloc(info->dev, func->ngroups,
-				    sizeof(*func->groups), GFP_KERNEL);
+				    sizeof(*groups), GFP_KERNEL);
 	if (!groups)
 		return -ENOMEM;
 
-- 
2.34.1




More information about the linux-arm-kernel mailing list