diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-09-29 15:58:17 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-10-07 05:03:56 +0200 |
| commit | e98ae807c42e5c9f5089c947f7c6ef444248a946 (patch) | |
| tree | 45dc14830cebd652fdb22a442312b2dfe0af78ba /include/exec/cpu-common.h | |
| parent | 5b7502234c7ede51ab6e684b6abc64d5fee3c1a1 (diff) | |
| download | focaccia-qemu-e98ae807c42e5c9f5089c947f7c6ef444248a946.tar.gz focaccia-qemu-e98ae807c42e5c9f5089c947f7c6ef444248a946.zip | |
system/physmem: Remove legacy cpu_physical_memory_rw()
The legacy cpu_physical_memory_rw() method is no more used, remove it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20251002084203.63899-16-philmd@linaro.org>
Diffstat (limited to 'include/exec/cpu-common.h')
| -rw-r--r-- | include/exec/cpu-common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h index ed35a18704..67e15c8e50 100644 --- a/include/exec/cpu-common.h +++ b/include/exec/cpu-common.h @@ -131,8 +131,6 @@ void cpu_address_space_init(CPUState *cpu, int asidx, */ void cpu_destroy_address_spaces(CPUState *cpu); -void cpu_physical_memory_rw(hwaddr addr, void *buf, - hwaddr len, bool is_write); void cpu_physical_memory_read(hwaddr addr, void *buf, hwaddr len); void cpu_physical_memory_write(hwaddr addr, const void *buf, hwaddr len); void *cpu_physical_memory_map(hwaddr addr, |