diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-08 17:29:59 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-15 18:19:26 +0200 |
commit | 0bc3cd624f1d59456cad769bb07e84066a2ddaf9 (patch) | |
tree | f4ef49e589605b99ceb087941ea164203564694b /hw/net/vmxnet_tx_pkt.c | |
parent | dccfcd0e5f8f37360ebda11ccc4dab164c04d5a3 (diff) |
include: avoid useless includes of exec/ headers
Headers in include/exec/ are for the deepest innards of QEMU,
they should almost never be included directly.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/net/vmxnet_tx_pkt.c')
-rw-r--r-- | hw/net/vmxnet_tx_pkt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/vmxnet_tx_pkt.c b/hw/net/vmxnet_tx_pkt.c index b1e795b3b2..fc01e4da3c 100644 --- a/hw/net/vmxnet_tx_pkt.c +++ b/hw/net/vmxnet_tx_pkt.c @@ -15,6 +15,7 @@ * */ +#include "hw/hw.h" #include "vmxnet_tx_pkt.h" #include "net/eth.h" #include "qemu-common.h" @@ -22,7 +23,6 @@ #include "net/checksum.h" #include "net/tap.h" #include "net/net.h" -#include "exec/cpu-common.h" enum { VMXNET_TX_PKT_VHDR_FRAG = 0, |