|
@@ -277,12 +277,15 @@ static void __init lpc18xx_ccu_init(struct device_node *np)
|
|
}
|
|
}
|
|
|
|
|
|
clk_data = kzalloc(sizeof(*clk_data), GFP_KERNEL);
|
|
clk_data = kzalloc(sizeof(*clk_data), GFP_KERNEL);
|
|
- if (!clk_data)
|
|
|
|
|
|
+ if (!clk_data) {
|
|
|
|
+ iounmap(reg_base);
|
|
return;
|
|
return;
|
|
|
|
+ }
|
|
|
|
|
|
clk_data->num = of_property_count_strings(np, "clock-names");
|
|
clk_data->num = of_property_count_strings(np, "clock-names");
|
|
clk_data->name = kcalloc(clk_data->num, sizeof(char *), GFP_KERNEL);
|
|
clk_data->name = kcalloc(clk_data->num, sizeof(char *), GFP_KERNEL);
|
|
if (!clk_data->name) {
|
|
if (!clk_data->name) {
|
|
|
|
+ iounmap(reg_base);
|
|
kfree(clk_data);
|
|
kfree(clk_data);
|
|
return;
|
|
return;
|
|
}
|
|
}
|