diff options
author | Thomas Huth | 2018-02-22 10:58:37 +0100 |
---|---|---|
committer | Jason Wang | 2018-03-05 03:30:16 +0100 |
commit | b20219b6451546b9664ceae471b2622b54f0a4bd (patch) | |
tree | ec6a04ce1d95d128078e79a9d20f23916b9dcdb7 /hw/net/lance.c | |
parent | net: Add a new convenience option "--nic" to configure default/on-board NICs (diff) | |
download | qemu-b20219b6451546b9664ceae471b2622b54f0a4bd.tar.gz qemu-b20219b6451546b9664ceae471b2622b54f0a4bd.tar.xz qemu-b20219b6451546b9664ceae471b2622b54f0a4bd.zip |
hw/net: Remove unnecessary header includes
Headers like "hw/loader.h" and "qemu/sockets.h" are not needed in
the hw/net/*.c files. And Some other headers are included via other
headers already, so we can drop them, too.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw/net/lance.c')
-rw-r--r-- | hw/net/lance.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hw/net/lance.c b/hw/net/lance.c index 0028bc525d..a08d5ac6a8 100644 --- a/hw/net/lance.c +++ b/hw/net/lance.c @@ -36,10 +36,7 @@ */ #include "qemu/osdep.h" -#include "hw/sysbus.h" -#include "net/net.h" #include "qemu/timer.h" -#include "qemu/sockets.h" #include "hw/sparc/sparc32_dma.h" #include "hw/net/lance.h" #include "trace.h" |