diff options
author | Philippe Mathieu-Daudé | 2017-09-20 21:49:29 +0200 |
---|---|---|
committer | Yongbok Kim | 2017-09-21 14:24:34 +0200 |
commit | 5502b66fc7d0bebd08b9b7017cb7e8b5261c3a2d (patch) | |
tree | 49bb5858296ea9d548f781bce5843851608deed6 /target/mips/Makefile.objs | |
parent | Merge remote-tracking branch 'remotes/mcayland/tags/qemu-sparc-signed' into s... (diff) | |
download | qemu-5502b66fc7d0bebd08b9b7017cb7e8b5261c3a2d.tar.gz qemu-5502b66fc7d0bebd08b9b7017cb7e8b5261c3a2d.tar.xz qemu-5502b66fc7d0bebd08b9b7017cb7e8b5261c3a2d.zip |
mips: move hw/mips/cputimer.c to target/mips/
This timer is a required part of the MIPS32/MIPS64 System Control coprocessor
(CP0). Moving it with the other architecture related files will allow an opaque
use of CPUMIPSState* in the next commit (introduce "internal.h").
also remove it from 'user' targets, remove an unnecessary include.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Igor Mammedov <imammedo@redhat.com>
Tested-by: James Hogan <james.hogan@imgtec.com>
Acked-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Yongbok Kim <yongbok.kim@imgtec.com>
Diffstat (limited to 'target/mips/Makefile.objs')
-rw-r--r-- | target/mips/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/mips/Makefile.objs b/target/mips/Makefile.objs index bc5ed8511f..651f36f517 100644 --- a/target/mips/Makefile.objs +++ b/target/mips/Makefile.objs @@ -1,4 +1,4 @@ obj-y += translate.o dsp_helper.o op_helper.o lmi_helper.o helper.o cpu.o obj-y += gdbstub.o msa_helper.o mips-semi.o -obj-$(CONFIG_SOFTMMU) += machine.o +obj-$(CONFIG_SOFTMMU) += machine.o cp0_timer.o obj-$(CONFIG_KVM) += kvm.o |