diff options
author | Alex Williamson | 2010-06-25 19:09:35 +0200 |
---|---|---|
committer | Anthony Liguori | 2010-07-06 17:36:28 +0200 |
commit | 1724f04985367b15751f11f4a9558f8736b2ab59 (patch) | |
tree | 8314db5ca99ed66015af03c2bf494177ae5e4460 /hw/gumstix.c | |
parent | virtio-net: Incorporate a DeviceState pointer and let savevm track instances (diff) | |
download | qemu-1724f04985367b15751f11f4a9558f8736b2ab59.tar.gz qemu-1724f04985367b15751f11f4a9558f8736b2ab59.tar.xz qemu-1724f04985367b15751f11f4a9558f8736b2ab59.zip |
qemu_ram_alloc: Add DeviceState and name parameters
These will be used to generate unique id strings for ramblocks. The name
field is required, the device pointer is optional as most callers don't
have a device. When there's no device or the device isn't a child of
a bus implementing BusInfo.get_dev_path, the name should be unique for
the platform.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/gumstix.c')
-rw-r--r-- | hw/gumstix.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hw/gumstix.c b/hw/gumstix.c index b64e04e205..c343a166e8 100644 --- a/hw/gumstix.c +++ b/hw/gumstix.c @@ -67,7 +67,8 @@ static void connex_init(ram_addr_t ram_size, #else be = 0; #endif - if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(connex_rom), + if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(NULL, "connext.rom", + connex_rom), dinfo->bdrv, sector_len, connex_rom / sector_len, 2, 0, 0, 0, 0, be)) { fprintf(stderr, "qemu: Error registering flash memory.\n"); @@ -105,7 +106,8 @@ static void verdex_init(ram_addr_t ram_size, #else be = 0; #endif - if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(verdex_rom), + if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(NULL, "verdex.rom", + verdex_rom), dinfo->bdrv, sector_len, verdex_rom / sector_len, 2, 0, 0, 0, 0, be)) { fprintf(stderr, "qemu: Error registering flash memory.\n"); |