From: Eduardo Habkost Date: Fri, 26 Sep 2014 19:46:03 +0000 (-0300) Subject: bitops.h: Don't include qemu-common.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=afeeead1bcd1080a621500240ea74ec433b21885;p=qemu.git bitops.h: Don't include qemu-common.h This removes the following circular dependency: bitops.h -> qemu-common.h -> target-i386/cpu.h -> target-i386/cpu-qom.h -> qom/cpu.h -> qdev-core.h -> bitmap.h -> bitops.h. Signed-off-by: Eduardo Habkost Signed-off-by: Michael Tokarev --- diff --git a/include/qemu/bitops.h b/include/qemu/bitops.h index 7e2d5c996e..181bd46063 100644 --- a/include/qemu/bitops.h +++ b/include/qemu/bitops.h @@ -12,7 +12,9 @@ #ifndef BITOPS_H #define BITOPS_H -#include "qemu-common.h" +#include +#include + #include "host-utils.h" #define BITS_PER_BYTE CHAR_BIT