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 <ehabkost@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
Eduardo Habkost 2014-09-26 16:46:03 -03:00 committed by Michael Tokarev
parent a5ebc0ebae
commit afeeead1bc
1 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,9 @@
#ifndef BITOPS_H
#define BITOPS_H
#include "qemu-common.h"
#include <stdint.h>
#include <assert.h>
#include "host-utils.h"
#define BITS_PER_BYTE CHAR_BIT