[<prev] [next>] [day] [month] [year] [list]
Message-ID: <d9923862-efac-949d-9915-de19d3f13fa5@users.sourceforge.net>
Date: Fri, 14 Apr 2017 11:14:13 +0200
From: SF Markus Elfring <elfring@...rs.sourceforge.net>
To: linux-gpio@...r.kernel.org, Arnd Bergmann <arnd@...db.de>,
Gary Bisson <gary.bisson@...ndarydevices.com>,
Laxman Dewangan <ldewangan@...dia.com>,
Linus Walleij <linus.walleij@...aro.org>,
Paul Gortmaker <paul.gortmaker@...driver.com>,
Peng Fan <van.freenix@...il.com>,
Shawn Guo <shawnguo@...nel.org>,
Vladimir Zapolskiy <vladimir_zapolskiy@...tor.com>
Cc: LKML <linux-kernel@...r.kernel.org>,
kernel-janitors@...r.kernel.org
Subject: [PATCH 04/10] pinctrl: imx: Improve another size determination in
imx_pinctrl_parse_functions()
From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Thu, 13 Apr 2017 15:20:43 +0200
Replace the specification of a data structure by a pointer dereference
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.
Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
---
drivers/pinctrl/freescale/pinctrl-imx.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/pinctrl/freescale/pinctrl-imx.c b/drivers/pinctrl/freescale/pinctrl-imx.c
index f835e8210ace..44dbf6e38d79 100644
--- a/drivers/pinctrl/freescale/pinctrl-imx.c
+++ b/drivers/pinctrl/freescale/pinctrl-imx.c
@@ -590,9 +590,7 @@ static int imx_pinctrl_parse_functions(struct device_node *np,
for_each_child_of_node(np, child) {
func->group_names[i] = child->name;
-
- grp = devm_kzalloc(info->dev, sizeof(struct group_desc),
- GFP_KERNEL);
+ grp = devm_kzalloc(info->dev, sizeof(*grp), GFP_KERNEL);
if (!grp)
return -ENOMEM;
--
2.12.2
Powered by blists - more mailing lists