diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-11-20 13:39:59 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-01-05 16:20:15 +0100 |
commit | bd3aa06950a17a7ff5acf231bcafe59b25cc0ff9 (patch) | |
tree | edaf88c05e326e99faa2bf0e9dc255bcbc359348 /scripts/qapi | |
parent | ae076b6c39bfd2027e35ca5be922dc8f1b18b901 (diff) | |
download | qemu-bd3aa06950a17a7ff5acf231bcafe59b25cc0ff9.zip qemu-bd3aa06950a17a7ff5acf231bcafe59b25cc0ff9.tar.gz qemu-bd3aa06950a17a7ff5acf231bcafe59b25cc0ff9.tar.bz2 |
memory: Simplify memory_region_init_rom_device_nomigrate() calls
Mechanical change using the following coccinelle script:
@@
expression mr, owner, arg3, arg4, arg5, arg6, errp;
@@
- memory_region_init_rom_device_nomigrate(mr, owner, arg3, arg4, arg5, arg6, &errp);
if (
- errp
+ !memory_region_init_rom_device_nomigrate(mr, owner, arg3, arg4, arg5, arg6, &errp)
) {
...
return;
}
and removing the local Error variable.
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-10-philmd@linaro.org>
Diffstat (limited to 'scripts/qapi')
0 files changed, 0 insertions, 0 deletions