diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-20 22:09:37 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-20 23:01:08 -0500 |
commit | 52e431959c8a063b4d79db47e9bdcc5a8f1d21f1 (patch) | |
tree | 9aa05d6e05ed83e67bf014f6745a3081b8407dc5 /hw/omap_lcdc.c | |
parent | 2be0e4ec99e6f88c4c48a14bdb5dd1f6413e4073 (diff) | |
download | qemu-52e431959c8a063b4d79db47e9bdcc5a8f1d21f1.tar.gz qemu-52e431959c8a063b4d79db47e9bdcc5a8f1d21f1.tar.bz2 qemu-52e431959c8a063b4d79db47e9bdcc5a8f1d21f1.zip |
Use glib memory allocation and free functions
qemu_malloc/qemu_free no longer exist after this commit.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/omap_lcdc.c')
-rw-r--r-- | hw/omap_lcdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/omap_lcdc.c b/hw/omap_lcdc.c index 0c2c55012b..a9054227e2 100644 --- a/hw/omap_lcdc.c +++ b/hw/omap_lcdc.c @@ -441,7 +441,7 @@ struct omap_lcd_panel_s *omap_lcdc_init(target_phys_addr_t base, qemu_irq irq, { int iomemtype; struct omap_lcd_panel_s *s = (struct omap_lcd_panel_s *) - qemu_mallocz(sizeof(struct omap_lcd_panel_s)); + g_malloc0(sizeof(struct omap_lcd_panel_s)); s->irq = irq; s->dma = dma; |