diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-11-20 11:31:30 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-01-05 16:20:15 +0100 |
commit | 62f5c1b234e27357b08ba01124c17f61729ceae8 (patch) | |
tree | 2d11c52757dcbf7ea9bd6b9fbf16351b5edb9135 /include/exec/memory.h | |
parent | bd3aa06950a17a7ff5acf231bcafe59b25cc0ff9 (diff) | |
download | qemu-62f5c1b234e27357b08ba01124c17f61729ceae8.zip qemu-62f5c1b234e27357b08ba01124c17f61729ceae8.tar.gz qemu-62f5c1b234e27357b08ba01124c17f61729ceae8.tar.bz2 |
memory: Have memory_region_init_rom_device() handler return a boolean
Following the example documented since commit e3fe3988d7 ("error:
Document Error API usage rules"), have memory_region_init_rom_device
return a boolean indicating whether an error is set or not.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Peter Xu <peterx@redhat.com>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Message-Id: <20231120213301.24349-11-philmd@linaro.org>
Diffstat (limited to 'include/exec/memory.h')
-rw-r--r-- | include/exec/memory.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h index 6d7b49b..6209458 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -1646,8 +1646,10 @@ bool memory_region_init_rom(MemoryRegion *mr, * must be unique within any device * @size: size of the region. * @errp: pointer to Error*, to store an error if it happens. + * + * Return: true on success, else false setting @errp with error. */ -void memory_region_init_rom_device(MemoryRegion *mr, +bool memory_region_init_rom_device(MemoryRegion *mr, Object *owner, const MemoryRegionOps *ops, void *opaque, |