diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-04-08 14:45:53 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-06-05 17:10:00 +0200 |
commit | 3f7d84648607cc0fcb3812bb4b88978e2a7aa24f (patch) | |
tree | c43361bb82a93a5a3b0ae185bb1fadc7ca21fbb7 /target-i386/Makefile.objs | |
parent | b216aa6c0fcbaa8ff4128969c14594896a5485a4 (diff) | |
download | qemu-3f7d84648607cc0fcb3812bb4b88978e2a7aa24f.zip |
target-i386: Use correct memory attributes for ioport accesses
In order to do this, stop using the cpu_in*/out* helpers, and instead
access address_space_io directly.
cpu_in* and cpu_out* remain for usage in the monitor, in qtest, and
in Xen.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-i386/Makefile.objs')
-rw-r--r-- | target-i386/Makefile.objs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target-i386/Makefile.objs b/target-i386/Makefile.objs index 027b94e1d3..7a1df2c983 100644 --- a/target-i386/Makefile.objs +++ b/target-i386/Makefile.objs @@ -5,5 +5,3 @@ obj-y += gdbstub.o obj-$(CONFIG_SOFTMMU) += machine.o arch_memory_mapping.o arch_dump.o obj-$(CONFIG_KVM) += kvm.o obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o -obj-$(CONFIG_LINUX_USER) += ioport-user.o -obj-$(CONFIG_BSD_USER) += ioport-user.o |