From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1BAA8A09E4; Fri, 29 Jan 2021 17:49:04 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C16C74069F; Fri, 29 Jan 2021 17:48:43 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id E706240691 for ; Fri, 29 Jan 2021 17:48:37 +0100 (CET) IronPort-SDR: iWETkK8Zb9Vo4tqTVEnSwUsbqVRj3KItbh5Ay7cvt/J1sZ6mMqpz0LUhsMqEYl1PkMAt6IKA8P wT/949WfEFHg== X-IronPort-AV: E=McAfee;i="6000,8403,9879"; a="179671269" X-IronPort-AV: E=Sophos;i="5.79,386,1602572400"; d="scan'208";a="179671269" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Jan 2021 08:48:37 -0800 IronPort-SDR: QwtniTozcj08vFb419NpvpXeuzzUUzqc1jL64CAHotWEceOLhTjDWKLyoxCUgdx7qRIAoUiK9h FZg4sz8fMS6A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,386,1602572400"; d="scan'208";a="370431294" Received: from silpixa00399126.ir.intel.com ([10.237.222.4]) by orsmga002.jf.intel.com with ESMTP; 29 Jan 2021 08:48:36 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: david.marchand@redhat.com, Bruce Richardson , David Hunt Date: Fri, 29 Jan 2021 16:48:17 +0000 Message-Id: <20210129164823.3205861-4-bruce.richardson@intel.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210129164823.3205861-1-bruce.richardson@intel.com> References: <20210114110606.21142-1-bruce.richardson@intel.com> <20210129164823.3205861-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v7 03/10] power: fix missing header includes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The rte_power_guest_channel.h file did not include it's dependent headers, so add them. Fixes: 5f443cc0f905 ("power: create guest channel public header file") Signed-off-by: Bruce Richardson --- This is one of those issues where it's hard to identify exactly where the issue started, so picking the commit making the file a public one. --- lib/librte_power/rte_power_guest_channel.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/librte_power/rte_power_guest_channel.h b/lib/librte_power/rte_power_guest_channel.h index adc9738174..ed4fbfdcd3 100644 --- a/lib/librte_power/rte_power_guest_channel.h +++ b/lib/librte_power/rte_power_guest_channel.h @@ -4,6 +4,12 @@ #ifndef RTE_POWER_GUEST_CHANNEL_H #define RTE_POWER_GUEST_CHANNEL_H +#include +#include +#include + +#include + #ifdef __cplusplus extern "C" { #endif -- 2.27.0