From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 2E34180E2 for ; Sun, 12 Oct 2014 21:28:48 +0200 (CEST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP; 12 Oct 2014 12:36:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,705,1406617200"; d="scan'208";a="613309117" Received: from sie-lab-212-143.ir.intel.com (HELO silpixa00385294.ir.intel.com) ([10.237.212.143]) by fmsmga002.fm.intel.com with ESMTP; 12 Oct 2014 12:36:23 -0700 From: Alan Carew To: dev@dpdk.org Date: Sun, 12 Oct 2014 20:36:10 +0100 Message-Id: <1413142571-23069-10-git-send-email-alan.carew@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1413142571-23069-1-git-send-email-alan.carew@intel.com> References: <1412003903-9061-1-git-send-email-alan.carew@intel.com> <1413142571-23069-1-git-send-email-alan.carew@intel.com> Subject: [dpdk-dev] [PATCH v4 09/10] Build system integration for VM Power Management(Guest and Host) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Oct 2014 19:28:49 -0000 librte_power now contains both rte_power_acpi_cpufreq and rte_power_kvm_vm implementations. Signed-off-by: Alan Carew --- lib/librte_power/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/librte_power/Makefile b/lib/librte_power/Makefile index 6185812..d672a5a 100644 --- a/lib/librte_power/Makefile +++ b/lib/librte_power/Makefile @@ -37,7 +37,8 @@ LIB = librte_power.a CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3 -fno-strict-aliasing # all source are stored in SRCS-y -SRCS-$(CONFIG_RTE_LIBRTE_POWER) := rte_power.c +SRCS-$(CONFIG_RTE_LIBRTE_POWER) := rte_power.c rte_power_acpi_cpufreq.c +SRCS-$(CONFIG_RTE_LIBRTE_POWER) += rte_power_kvm_vm.c guest_channel.c # install this header file SYMLINK-$(CONFIG_RTE_LIBRTE_POWER)-include := rte_power.h -- 1.9.3