mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
Replace cpu_physical_memory_rw were possible
Using cpu_physical_memory_read, cpu_physical_memory_write and ldub_phys improves readability and allows removing some type casts. lduw_phys and ldl_phys were not used because both require aligned addresses. Therefore it is not possible to simply replace existing calls by one of these functions. Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
b8b79323d0
commit
54f7b4a396
8 changed files with 19 additions and 21 deletions
2
exec.c
2
exec.c
|
@ -3932,7 +3932,7 @@ void *cpu_physical_memory_map(target_phys_addr_t addr,
|
|||
bounce.addr = addr;
|
||||
bounce.len = l;
|
||||
if (!is_write) {
|
||||
cpu_physical_memory_rw(addr, bounce.buffer, l, 0);
|
||||
cpu_physical_memory_read(addr, bounce.buffer, l);
|
||||
}
|
||||
ptr = bounce.buffer;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue