summaryrefslogtreecommitdiffstats
path: root/hw/misc/omap_clk.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/misc/omap_clk.c')
-rw-r--r--hw/misc/omap_clk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/omap_clk.c b/hw/misc/omap_clk.c
index 80a3c50..73d4f8b 100644
--- a/hw/misc/omap_clk.c
+++ b/hw/misc/omap_clk.c
@@ -1239,7 +1239,7 @@ void omap_clk_init(struct omap_mpu_state_s *mpu)
for (i = onchip_clks, count = 0; *i; i ++)
if ((*i)->flags & flag)
count ++;
- mpu->clks = (struct clk *) g_malloc0(sizeof(struct clk) * (count + 1));
+ mpu->clks = g_new0(struct clk, count + 1);
for (i = onchip_clks, j = mpu->clks; *i; i ++)
if ((*i)->flags & flag) {
memcpy(j, *i, sizeof(struct clk));
OpenPOWER on IntegriCloud