clk/axs10x: Clear init field in driver probe
authorJose Abreu <Jose.Abreu@synopsys.com>
Mon, 12 Dec 2016 11:08:55 +0000 (11:08 +0000)
committerStephen Boyd <sboyd@codeaurora.org>
Tue, 10 Jan 2017 00:06:40 +0000 (16:06 -0800)
Init field must be cleared in driver probe as this structure is not
dinamically allocated. If not, wrong flags can be passed to core.

Signed-off-by: Jose Abreu <joabreu@synopsys.com>
Cc: Carlos Palminha <palminha@synopsys.com>
Cc: Stephen Boyd <sboyd@codeaurora.org>
Cc: Michael Turquette <mturquette@baylibre.com>
Cc: linux-clk@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Fixes: 923587aafc2c ("clk/axs10x: Add I2S PLL clock driver")
Signed-off-by: Michael Turquette <mturquette@baylibre.com>
Link: lkml.kernel.org/r/040cc9afdfa0e95ce7a01c406ff427ef7dc0c0fd.1481540717.git.joabreu@synopsys.com

drivers/clk/axs10x/i2s_pll_clock.c

index 411310d295816cb3ef645edb7562689e83ff141a..02d3bcd6216cbac49ea584a0e205c6d664c58ce7 100644 (file)
@@ -182,6 +182,7 @@ static int i2s_pll_clk_probe(struct platform_device *pdev)
        if (IS_ERR(pll_clk->base))
                return PTR_ERR(pll_clk->base);
 
+       memset(&init, 0, sizeof(init));
        clk_name = node->name;
        init.name = clk_name;
        init.ops = &i2s_pll_ops;