mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
memory: Have memory_region_init_rom() handler return a boolean
Following the example documented since commit e3fe3988d7
("error:
Document Error API usage rules"), have memory_region_init_rom()
return a boolean indicating whether an error is set or not.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Gavin Shan <gshan@redhat.com>
Message-Id: <20231120213301.24349-8-philmd@linaro.org>
This commit is contained in:
parent
fe5f33d6b0
commit
b9159451d3
2 changed files with 7 additions and 3 deletions
|
@ -1611,8 +1611,10 @@ bool memory_region_init_ram(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(MemoryRegion *mr,
|
||||
bool memory_region_init_rom(MemoryRegion *mr,
|
||||
Object *owner,
|
||||
const char *name,
|
||||
uint64_t size,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue