aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2017-11-03 16:10:21 +0000
committerWill Deacon <will.deacon@arm.com>2017-11-03 16:19:58 +0000
commitf77d646ba01d04be5aad9449ac00719c043fe36e (patch)
treeca2b22e4e3ac37bef04fc84b2954465f5cfb3302
parentf6108d72e977cce00e7bc824acd1d73da8cc9729 (diff)
downloadkvmtool-f77d646ba01d04be5aad9449ac00719c043fe36e.tar.gz
irq.h: fix compilation error due to missing bool type
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 <andre.przywara@arm.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r--include/kvm/irq.h1
1 files changed, 1 insertions, 0 deletions
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 <stdbool.h>
#include <linux/types.h>
#include <linux/rbtree.h>
#include <linux/list.h>