From 731b0444b1794e7eb413f6faeb42129471ec8a3d Mon Sep 17 00:00:00 2001 From: dongshen Date: Mon, 25 Feb 2019 16:22:31 -0800 Subject: [PATCH] HV: rename core.c to vdev.c core.c contains functions all related to pci vdev management, so it makes sense to give it a more meaningful file name. Tracked-On: #2534 Signed-off-by: dongshen Acked-by: Eddie Dong --- hypervisor/Makefile | 2 +- hypervisor/dm/vpci/{core.c => vdev.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename hypervisor/dm/vpci/{core.c => vdev.c} (100%) diff --git a/hypervisor/Makefile b/hypervisor/Makefile index d522ac90c..ca5fecf51 100644 --- a/hypervisor/Makefile +++ b/hypervisor/Makefile @@ -212,7 +212,7 @@ C_SRCS += hw/pci.c C_SRCS += dm/vpic.c C_SRCS += dm/vioapic.c -C_SRCS += dm/vpci/core.c +C_SRCS += dm/vpci/vdev.c C_SRCS += dm/vpci/vpci.c ifeq ($(CONFIG_PARTITION_MODE),y) C_SRCS += dm/vmptable.c diff --git a/hypervisor/dm/vpci/core.c b/hypervisor/dm/vpci/vdev.c similarity index 100% rename from hypervisor/dm/vpci/core.c rename to hypervisor/dm/vpci/vdev.c