From ebac4631e048a9eca976b8eb6ee0a3d38d0145d1 Mon Sep 17 00:00:00 2001 From: Antonios Motakis Date: Wed, 12 Aug 2015 18:21:58 +0200 Subject: [PATCH] core: printk: include asm/bitops.h directly Currently the implementation in hypervisor/printk.c assumes asm/bitops.h will be included by asm/spinlock.h. Since this implementation is using bitops directly, we include the right header file. Signed-off-by: Antonios Motakis [Jan: adjust to alphabetic ordering] Signed-off-by: Jan Kiszka --- hypervisor/printk.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hypervisor/printk.c b/hypervisor/printk.c index 603bb83..faa1326 100644 --- a/hypervisor/printk.c +++ b/hypervisor/printk.c @@ -14,6 +14,7 @@ #include #include #include +#include #include volatile unsigned long panic_in_progress; -- 2.39.2