diff options
| author | Paolo Bonzini | 2016-03-15 17:22:36 +0100 |
|---|---|---|
| committer | Paolo Bonzini | 2016-05-19 16:42:28 +0200 |
| commit | 58369e22cf971448411bfbc8c894b2addebe2111 (patch) | |
| tree | 6819bf43394a95a8d67cba4cb945a9e95a3fa250 /hw | |
| parent | cpu: move endian-dependent load/store functions to cpu-all.h (diff) | |
| download | qemu-58369e22cf971448411bfbc8c894b2addebe2111.tar.gz qemu-58369e22cf971448411bfbc8c894b2addebe2111.tar.xz qemu-58369e22cf971448411bfbc8c894b2addebe2111.zip | |
qemu-common: stop including qemu/bswap.h from qemu-common.h
Move it to the actual users. There are still a few includes of
qemu/bswap.h in headers; removing them is left for future work.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/arm/nseries.c | 1 | ||||
| -rw-r--r-- | hw/block/hd-geometry.c | 1 | ||||
| -rw-r--r-- | hw/bt/hci-csr.c | 1 | ||||
| -rw-r--r-- | hw/bt/l2cap.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/hw/arm/nseries.c b/hw/arm/nseries.c index c7068c0d38..f3a9b1a826 100644 --- a/hw/arm/nseries.c +++ b/hw/arm/nseries.c @@ -21,6 +21,7 @@ #include "qemu/osdep.h" #include "qapi/error.h" #include "qemu/cutils.h" +#include "qemu/bswap.h" #include "sysemu/sysemu.h" #include "hw/arm/omap.h" #include "hw/arm/arm.h" diff --git a/hw/block/hd-geometry.c b/hw/block/hd-geometry.c index d388f13e9d..57ad5012a7 100644 --- a/hw/block/hd-geometry.c +++ b/hw/block/hd-geometry.c @@ -32,6 +32,7 @@ #include "qemu/osdep.h" #include "sysemu/block-backend.h" +#include "qemu/bswap.h" #include "hw/block/block.h" #include "trace.h" diff --git a/hw/bt/hci-csr.c b/hw/bt/hci-csr.c index 2e970b6561..e6b8998253 100644 --- a/hw/bt/hci-csr.c +++ b/hw/bt/hci-csr.c @@ -22,6 +22,7 @@ #include "qemu-common.h" #include "sysemu/char.h" #include "qemu/timer.h" +#include "qemu/bswap.h" #include "hw/irq.h" #include "sysemu/bt.h" #include "hw/bt.h" diff --git a/hw/bt/l2cap.c b/hw/bt/l2cap.c index 8065251947..dfc95ed048 100644 --- a/hw/bt/l2cap.c +++ b/hw/bt/l2cap.c @@ -20,6 +20,7 @@ #include "qemu/osdep.h" #include "qemu-common.h" #include "qemu/timer.h" +#include "qemu/bswap.h" #include "hw/bt.h" #define L2CAP_CID_MAX 0x100 /* Between 0x40 and 0x10000 */ |
