From patchwork Thu Nov 28 02:24:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefano Stabellini X-Patchwork-Id: 11265277 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 7D41218B7 for ; Thu, 28 Nov 2019 02:27:24 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 57ECC2158A for ; Thu, 28 Nov 2019 02:27:24 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="eBv6XjI7" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 57ECC2158A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1ia9UO-0007yk-CN; Thu, 28 Nov 2019 02:25:04 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1ia9UM-0007yf-Lz for xen-devel@lists.xenproject.org; Thu, 28 Nov 2019 02:25:02 +0000 X-Inumbo-ID: 474cbe0c-1186-11ea-a3c4-12813bfff9fa Received: from mail.kernel.org (unknown [198.145.29.99]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 474cbe0c-1186-11ea-a3c4-12813bfff9fa; Thu, 28 Nov 2019 02:25:01 +0000 (UTC) Received: from sstabellini-ThinkPad-T480s.hsd1.ca.comcast.net (c-67-164-102-47.hsd1.ca.comcast.net [67.164.102.47]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3AF622158A; Thu, 28 Nov 2019 02:25:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1574907900; bh=tk8j4Ysai55R6RgR9CzIi4LtogjbEdt1GnJcC9zWv+s=; h=From:To:Cc:Subject:Date:From; b=eBv6XjI7i9FtmSEdJ1Fge2wEFNhmNXVyAkinS6tN7z/8qy6XCbnxFWzq3spULgvQb bblXFMGE01EBQcfH7e9OYB8EAGu86srd5mrPQcJ2Sox3oU/AVcrljFAmQuJvl9pMtN Dc55hLrlxGzyIqNyZEAT5iwKKAVpFyNIr4W57ZA8= From: Stefano Stabellini To: xen-devel@lists.xenproject.org Date: Wed, 27 Nov 2019 18:24:58 -0800 Message-Id: <20191128022458.4428-1-sstabellini@kernel.org> X-Mailer: git-send-email 2.17.1 Subject: [Xen-devel] [PATCH] tools/arm: include xen-tools/libs.h from libxl_arm_acpi.c X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: sstabellini@kernel.org, julien@xen.org, wl@xen.org, ian.jackson@eu.citrix.com, anthony.perard@citrix.com, Stefano Stabellini MIME-Version: 1.0 Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" libxl_arm_acpi.c is using BUILD_BUG_ON but it is not including xen-tools/libs.h that defines it. Signed-off-by: Stefano Stabellini Acked-by: Wei Liu --- tools/libxl/libxl_arm_acpi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/libxl/libxl_arm_acpi.c b/tools/libxl/libxl_arm_acpi.c index ba874c3d32..52c476ff65 100644 --- a/tools/libxl/libxl_arm_acpi.c +++ b/tools/libxl/libxl_arm_acpi.c @@ -19,6 +19,7 @@ #include "libxl_arm.h" #include +#include /* Below typedefs are useful for the headers under acpi/ */ typedef uint8_t u8;