hv:move common/io_req.c/h to dm folder

renamed:    common/io_req.c -> dm/io_req.c
renamed:    include/arch/x86/io_req.h -> include/dm/io_req.h

Tracked-On: #1842
Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com>
Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com>
Reviewed-by: Yin Fengwei <fengwei.yin@intel.com>
This commit is contained in:
Mingqiang Chi 2019-04-08 11:09:59 +08:00 committed by wenlingz
parent 2b79c6df6a
commit 17faa897a5
4 changed files with 2 additions and 2 deletions

View File

@ -803,7 +803,7 @@ INPUT = custom-doxygen/mainpage.md \
../hypervisor/include/arch/x86/guest/vlapic.h \
../hypervisor/include/dm/vioapic.h \
../hypervisor/include/dm/vpic.h \
../hypervisor/include/arch/x86/io_req.h \
../hypervisor/include/dm/io_req.h \
../hypervisor/include/arch/x86/guest/io_emul.h \
../hypervisor/include/arch/x86/guest/assign.h \
../hypervisor/include/common/hypercall.h \

View File

@ -212,7 +212,6 @@ C_SRCS += common/hypercall.c
C_SRCS += common/trusty_hypercall.c
C_SRCS += common/schedule.c
C_SRCS += common/vm_load.c
C_SRCS += common/io_req.c
C_SRCS += common/ptdev.c
C_SRCS += common/static_checks.c
@ -225,6 +224,7 @@ C_SRCS += hw/pci.c
C_SRCS += dm/vpic.c
C_SRCS += dm/vrtc.c
C_SRCS += dm/vioapic.c
C_SRCS += dm/io_req.c
C_SRCS += dm/vpci/vdev.c
C_SRCS += dm/vpci/vpci.c
ifeq ($(CONFIG_PARTITION_MODE),y)