Message ID | 39826a4aaf2b1769d7ff95301a25eab4adc98535.1619157996.git.christophe.jaillet@wanadoo.fr (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
Series | clk: mvebu: Fix some error handling paths + do some clean-up | expand |
diff --git a/drivers/clk/mvebu/clk-cpu.c b/drivers/clk/mvebu/clk-cpu.c index 9a5c2aec6ec2..55a8486f665f 100644 --- a/drivers/clk/mvebu/clk-cpu.c +++ b/drivers/clk/mvebu/clk-cpu.c @@ -238,7 +238,7 @@ static void __init of_cpu_clk_setup(struct device_node *node) return; bail_out: kfree(clks); - while(ncpus--) + while (ncpus--) kfree(cpuclk[ncpus].clk_name); clks_out: kfree(cpuclk);
Fix a checkpatch warning. Add a missing space. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> --- drivers/clk/mvebu/clk-cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)