diff options
author | Emilio López <emilio@elopez.com.ar> | 2013-03-27 17:20:43 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-04-04 16:53:02 -0400 |
commit | 918d7f6f68620e0721bb31402ebf87e15f826831 (patch) | |
tree | 0ab4b3ce43ff7a89e69388ab46df3bc863198e26 /drivers/clk | |
parent | 5a4fe9b55db4ec5b6627245a91445c6495a136df (diff) |
clk: sunxi: drop an unnecesary kmalloc
clk_register will copy this information, so we can just use a normal
array and do one less dynamic allocation.
Signed-off-by: Emilio López <emilio@elopez.com.ar>
Reviewed-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/sunxi/clk-sunxi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk-sunxi.c index daa51ab9701f..0bb0eb4ed217 100644 --- a/drivers/clk/sunxi/clk-sunxi.c +++ b/drivers/clk/sunxi/clk-sunxi.c | |||
@@ -232,7 +232,7 @@ static void __init sunxi_mux_clk_setup(struct device_node *node, | |||
232 | { | 232 | { |
233 | struct clk *clk; | 233 | struct clk *clk; |
234 | const char *clk_name = node->name; | 234 | const char *clk_name = node->name; |
235 | const char **parents = kmalloc(sizeof(char *) * 5, GFP_KERNEL); | 235 | const char *parents[5]; |
236 | void *reg; | 236 | void *reg; |
237 | int i = 0; | 237 | int i = 0; |
238 | 238 | ||