From patchwork Fri Nov 3 16:10:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andre Przywara X-Patchwork-Id: 10040669 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B59926032D for ; Fri, 3 Nov 2017 16:10:40 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CBE8129710 for ; Fri, 3 Nov 2017 16:10:39 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C0B0B2976F; Fri, 3 Nov 2017 16:10:39 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3DA7F29710 for ; Fri, 3 Nov 2017 16:10:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932280AbdKCQKg (ORCPT ); Fri, 3 Nov 2017 12:10:36 -0400 Received: from usa-sjc-mx-foss1.foss.arm.com ([217.140.101.70]:45894 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751290AbdKCQKg (ORCPT ); Fri, 3 Nov 2017 12:10:36 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id C710C80D; Fri, 3 Nov 2017 09:10:35 -0700 (PDT) Received: from e104803-lin.lan (unknown [10.1.207.46]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id B47643F3E1; Fri, 3 Nov 2017 09:10:34 -0700 (PDT) From: Andre Przywara To: Will Deacon Cc: Jean-Philippe Brucker , Marc Zyngier , kvm@vger.kernel.org, kvmarm@lists.cs.columbia.edu Subject: [PATCH kvmtool] irq.h: fix compilation error due to missing bool type Date: Fri, 3 Nov 2017 16:10:21 +0000 Message-Id: <20171103161021.6511-1-andre.przywara@arm.com> X-Mailer: git-send-email 2.14.1 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Commit f6108d72e977 ("Add GICv2m support") introduced a bool return type, but missed to include the respective header (this was probably part of a former prerequisite series). Fix this by including the header. Fixes: f6108d72e977cce00e7bc824acd1d73da8cc9729 ("Add GICv2m support") Signed-off-by: Andre Przywara --- include/kvm/irq.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/kvm/irq.h b/include/kvm/irq.h index 429542d8..8ba8b740 100644 --- a/include/kvm/irq.h +++ b/include/kvm/irq.h @@ -1,6 +1,7 @@ #ifndef KVM__IRQ_H #define KVM__IRQ_H +#include #include #include #include