From 1ead62bc1bd7f48bc7d4d107769fb991f6f3961c Mon Sep 17 00:00:00 2001 From: Vincent Mailhol Date: Tue, 14 Jul 2026 20:18:02 +0200 Subject: [PATCH] container_of: remove useless pair of parentheses The last expression in container_of() doesn't need an extra pair of parenthesis. Remove it. Signed-off-by: Vincent Mailhol Link: https://patch.msgid.link/20260714-containerof_refactor-v1-2-b5c31164d2ad@kernel.org Signed-off-by: Greg Kroah-Hartman --- include/linux/container_of.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/container_of.h b/include/linux/container_of.h index 28500a62ab7e..68153170db32 100644 --- a/include/linux/container_of.h +++ b/include/linux/container_of.h @@ -21,7 +21,7 @@ static_assert(__same_type(*(ptr), typeof_member(type, member)) || \ __same_type(*(ptr), void), \ "pointer type mismatch in container_of()"); \ - ((type *)(__mptr - offsetof(type, member))); }) + (type *)(__mptr - offsetof(type, member)); }) /** * container_of_const - cast a member of a structure out to the containing