From 2756ec740dbaecf8f59dc6b142ef20efd70fc25c Mon Sep 17 00:00:00 2001 From: Shiqing Gao Date: Tue, 8 Jan 2019 09:10:07 +0800 Subject: [PATCH] hv: move `dm/hw/pci.c` to `hw/pci.c` This patch moves `dm/hw/pci.c` to `hw/pci.c` Tracked-On: #861 Signed-off-by: Shiqing Gao Acked-by: Eddie Dong --- hypervisor/Makefile | 3 ++- hypervisor/{dm => }/hw/pci.c | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename hypervisor/{dm => }/hw/pci.c (100%) diff --git a/hypervisor/Makefile b/hypervisor/Makefile index cb9bbe218..ad2f55c5d 100644 --- a/hypervisor/Makefile +++ b/hypervisor/Makefile @@ -195,9 +195,10 @@ ifdef STACK_PROTECTOR C_SRCS += common/stack_protector.c endif +C_SRCS += hw/pci.c + C_SRCS += dm/vpic.c C_SRCS += dm/vioapic.c -C_SRCS += dm/hw/pci.c C_SRCS += dm/vpci/core.c C_SRCS += dm/vpci/vpci.c ifeq ($(CONFIG_PARTITION_MODE),y) diff --git a/hypervisor/dm/hw/pci.c b/hypervisor/hw/pci.c similarity index 100% rename from hypervisor/dm/hw/pci.c rename to hypervisor/hw/pci.c