Message ID | 20181016142200.19741-2-alexandre.belloni@bootlin.com (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
Series | clk: at91: Rework DT bindings | expand |
Quoting Alexandre Belloni (2018-10-16 07:21:39) > The allocation for the audio pmc is using the size of struct clk_audio_pad > instead of struct clk_audio_pmc. This works fine because the former is > larger than the latter but it is safer to be correct. > > Fixes: ("0865805d82d4 clk: at91: add audio pll clock drivers") > Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> > --- Applied to clk-next
diff --git a/drivers/clk/at91/clk-audio-pll.c b/drivers/clk/at91/clk-audio-pll.c index da7bafcfbe70..b3eaf654fac9 100644 --- a/drivers/clk/at91/clk-audio-pll.c +++ b/drivers/clk/at91/clk-audio-pll.c @@ -509,7 +509,7 @@ static void __init of_sama5d2_clk_audio_pll_pad_setup(struct device_node *np) static void __init of_sama5d2_clk_audio_pll_pmc_setup(struct device_node *np) { - struct clk_audio_pad *apmc_ck; + struct clk_audio_pmc *apmc_ck; struct clk_init_data init = {}; apmc_ck = kzalloc(sizeof(*apmc_ck), GFP_KERNEL);
The allocation for the audio pmc is using the size of struct clk_audio_pad instead of struct clk_audio_pmc. This works fine because the former is larger than the latter but it is safer to be correct. Fixes: ("0865805d82d4 clk: at91: add audio pll clock drivers") Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> --- drivers/clk/at91/clk-audio-pll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)