Browse Source

clk: clk-u300: Improve sizeof() usage

Replace the specification of data structures by pointer
dereferences as the parameter for the operator "sizeof" to make
the corresponding size determination a bit safer according to the
Linux coding style convention.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Markus Elfring 7 years ago
parent
commit
27f8a53a9d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/clk/clk-u300.c

+ 2 - 2
drivers/clk/clk-u300.c

@@ -702,7 +702,7 @@ syscon_clk_register(struct device *dev, const char *name,
 	struct clk_init_data init;
 	struct clk_init_data init;
 	int ret;
 	int ret;
 
 
-	sclk = kzalloc(sizeof(struct clk_syscon), GFP_KERNEL);
+	sclk = kzalloc(sizeof(*sclk), GFP_KERNEL);
 	if (!sclk)
 	if (!sclk)
 		return ERR_PTR(-ENOMEM);
 		return ERR_PTR(-ENOMEM);
 
 
@@ -1121,7 +1121,7 @@ mclk_clk_register(struct device *dev, const char *name,
 	struct clk_init_data init;
 	struct clk_init_data init;
 	int ret;
 	int ret;
 
 
-	mclk = kzalloc(sizeof(struct clk_mclk), GFP_KERNEL);
+	mclk = kzalloc(sizeof(*mclk), GFP_KERNEL);
 	if (!mclk)
 	if (!mclk)
 		return ERR_PTR(-ENOMEM);
 		return ERR_PTR(-ENOMEM);