diff options
author | Peter Maydell | 2018-08-24 19:04:20 +0200 |
---|---|---|
committer | Paolo Bonzini | 2018-10-02 19:09:14 +0200 |
commit | 62a0db942dec6ebfec19aac2b604737d3c9a2d75 (patch) | |
tree | 3612b3e05697715bf5c92b87b9cb90d244845bdb /docs | |
parent | memory: Fix access_with_adjusted_size(small size) on big-endian memory regions (diff) | |
download | qemu-62a0db942dec6ebfec19aac2b604737d3c9a2d75.tar.gz qemu-62a0db942dec6ebfec19aac2b604737d3c9a2d75.tar.xz qemu-62a0db942dec6ebfec19aac2b604737d3c9a2d75.zip |
memory: Remove old_mmio accessors
Now that all the users of old_mmio MemoryRegion accessors
have been converted, we can remove the core code support.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20180824170422.5783-2-peter.maydell@linaro.org>
Based-on: <20180802174042.29234-1-peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/devel/memory.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/devel/memory.txt b/docs/devel/memory.txt index c1dee1252c..4fff0d5603 100644 --- a/docs/devel/memory.txt +++ b/docs/devel/memory.txt @@ -342,5 +342,3 @@ various constraints can be supplied to control how these callbacks are called: - .impl.unaligned specifies that the *implementation* supports unaligned accesses; if false, unaligned accesses will be emulated by two aligned accesses. - - .old_mmio eases the porting of code that was formerly using - cpu_register_io_memory(). It should not be used in new code. |