summaryrefslogtreecommitdiffstats
path: root/drivers/clk/at91
diff options
context:
space:
mode:
authorAlexandre Belloni2018-10-16 16:21:39 +0200
committerStephen Boyd2018-10-17 18:39:19 +0200
commit7fa75007b7d7421aea59ff2b12ab1bd65a5abfa6 (patch)
treeeb8d5713d1af9d982e3ae64f389146c202e703cf /drivers/clk/at91
parentLinux 4.19-rc1 (diff)
downloadkernel-qcow2-linux-7fa75007b7d7421aea59ff2b12ab1bd65a5abfa6.tar.gz
kernel-qcow2-linux-7fa75007b7d7421aea59ff2b12ab1bd65a5abfa6.tar.xz
kernel-qcow2-linux-7fa75007b7d7421aea59ff2b12ab1bd65a5abfa6.zip
clk: at91: audio-pll: fix audio pmc type
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> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/at91')
-rw-r--r--drivers/clk/at91/clk-audio-pll.c2
1 files changed, 1 insertions, 1 deletions
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);