mirror of https://github.com/xemu-project/xemu.git
memory: Replace open-coded memory_region_is_romd
Improves readability. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
parent
73034e9e08
commit
4b81126e33
|
@ -1359,7 +1359,7 @@ void tb_invalidate_phys_addr(hwaddr addr)
|
|||
section = phys_page_find(address_space_memory.dispatch,
|
||||
addr >> TARGET_PAGE_BITS);
|
||||
if (!(memory_region_is_ram(section->mr)
|
||||
|| (section->mr->rom_device && section->mr->readable))) {
|
||||
|| memory_region_is_romd(section->mr))) {
|
||||
return;
|
||||
}
|
||||
ram_addr = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK)
|
||||
|
|
Loading…
Reference in New Issue