mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
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>
This commit is contained in:
parent
14015304b6
commit
7267c0947d
357 changed files with 1672 additions and 1674 deletions
|
@ -1123,7 +1123,7 @@ void ahci_init(AHCIState *s, DeviceState *qdev, int ports)
|
|||
int i;
|
||||
|
||||
s->ports = ports;
|
||||
s->dev = qemu_mallocz(sizeof(AHCIDevice) * ports);
|
||||
s->dev = g_malloc0(sizeof(AHCIDevice) * ports);
|
||||
ahci_reg_init(s);
|
||||
/* XXX BAR size should be 1k, but that breaks, so bump it to 4k for now */
|
||||
memory_region_init_io(&s->mem, &ahci_mem_ops, s, "ahci", 0x1000);
|
||||
|
@ -1146,7 +1146,7 @@ void ahci_init(AHCIState *s, DeviceState *qdev, int ports)
|
|||
void ahci_uninit(AHCIState *s)
|
||||
{
|
||||
memory_region_destroy(&s->mem);
|
||||
qemu_free(s->dev);
|
||||
g_free(s->dev);
|
||||
}
|
||||
|
||||
void ahci_reset(void *opaque)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue