aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clk/clk-si5351.c
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2017-04-19 22:37:30 +0200
committerStephen Boyd <sboyd@codeaurora.org>2017-04-21 19:44:42 -0700
commit9a78b16972fba06bc8d303282a6b96f5061fd16a (patch)
treee981255421c205f5c2056557d61a697578d5b78b /drivers/clk/clk-si5351.c
parentclk: at91: Use kcalloc() in of_at91_clk_pll_get_characteristics() (diff)
downloadwireguard-linux-9a78b16972fba06bc8d303282a6b96f5061fd16a.tar.xz
wireguard-linux-9a78b16972fba06bc8d303282a6b96f5061fd16a.zip
clk: si5351: Use devm_kcalloc() in si5351_i2c_probe()
Multiplications for the size determination of memory allocations indicated that array data structures should be processed. Thus use the corresponding function "devm_kcalloc". 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>
Diffstat (limited to 'drivers/clk/clk-si5351.c')
-rw-r--r--drivers/clk/clk-si5351.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/clk-si5351.c b/drivers/clk/clk-si5351.c
index b051db43fae1..a4c009e1e70d 100644
--- a/drivers/clk/clk-si5351.c
+++ b/drivers/clk/clk-si5351.c
@@ -1535,9 +1535,9 @@ static int si5351_i2c_probe(struct i2c_client *client,
else
parent_names[1] = si5351_pll_names[1];
- drvdata->msynth = devm_kzalloc(&client->dev, num_clocks *
+ drvdata->msynth = devm_kcalloc(&client->dev, num_clocks,
sizeof(*drvdata->msynth), GFP_KERNEL);
- drvdata->clkout = devm_kzalloc(&client->dev, num_clocks *
+ drvdata->clkout = devm_kcalloc(&client->dev, num_clocks,
sizeof(*drvdata->clkout), GFP_KERNEL);
drvdata->num_clkout = num_clocks;