From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) by dpdk.org (Postfix) with ESMTP id E57765A56 for ; Wed, 5 Aug 2015 11:14:47 +0200 (CEST) Received: by wijp15 with SMTP id p15so39642941wij.0 for ; Wed, 05 Aug 2015 02:14:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=ciMBVL7jnHmY1a1mfk9/Hs329ieXvPNQ+zgv4uuMhx0=; b=mdCjDGnsLz4ivPhf5WuX2pObz35ZK3pVTSifl4iUyiT2QRgu0KLHgdQQj6+bKaFokg Xu98fBvBUwovWJsBPxddN6t+VpjhKrG8deXoc5oZJjlFxta3vO1ZYZ7I/ZhNI50qWDmI rYh+HlWwoW3VuiVTamzZFz70Gas2hwRrX1d3u9LeVU30GmA+B+rNYYSXPm2sRupkd0Bu f3ex8xDuVsKlIpEiS/j0V2w1uIL/8iM2MOtfjypu74sSv4vvrczddqAd0aCQCZnj8VWo WfMVsulhpoER/6KaTlxvmw7wttwsgBFK8kW7QvPdu+TBaZFaS3frO0+hxrEqf9x5LuPe Orrw== X-Gm-Message-State: ALoCoQlRbDLfG97mQ+LOfF2xZTvJjwxVjXTcUYY2fSK6j4WBfVAsW3T07EP8FihQZZNzf7J+gL6c X-Received: by 10.194.205.37 with SMTP id ld5mr19012235wjc.14.1438766087746; Wed, 05 Aug 2015 02:14:47 -0700 (PDT) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id lz10sm3064123wjb.48.2015.08.05.02.14.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 05 Aug 2015 02:14:47 -0700 (PDT) From: Thomas Monjalon To: Chao Zhu Date: Wed, 5 Aug 2015 11:13:22 +0200 Message-Id: <1438766002-1194-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.4.2 Cc: dev@dpdk.org Subject: [dpdk-dev] [PATCH] eal/ppc: fix build 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: Wed, 05 Aug 2015 09:14:48 -0000 Byte ordering macros were used without including the needed header. Fixes: ce10b21bf624 ("eal/ppc: fix cpu cycle count for little endian") Signed-off-by: Thomas Monjalon --- lib/librte_eal/common/include/arch/ppc_64/rte_cycles.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_eal/common/include/arch/ppc_64/rte_cycles.h b/lib/librte_eal/common/include/arch/ppc_64/rte_cycles.h index e663c48..64beddf 100644 --- a/lib/librte_eal/common/include/arch/ppc_64/rte_cycles.h +++ b/lib/librte_eal/common/include/arch/ppc_64/rte_cycles.h @@ -39,6 +39,8 @@ extern "C" { #include "generic/rte_cycles.h" +#include + /** * Read the time base register. * -- 2.4.2