diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-10-24 09:36:16 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-12-19 08:29:59 +0100 |
commit | 090f7ac5ba433ef9de7004b8e8304d06bd9ffd7d (patch) | |
tree | 01de9337ffbbabe1dc0429819b88ca3b8718675d /hw | |
parent | f8fe796407d8b340def61a6b57991e47aee3cfc4 (diff) |
net: move Bluetooth stuff out of net.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/bt-hci-csr.c | 2 | ||||
-rw-r--r-- | hw/bt-hci.c | 2 | ||||
-rw-r--r-- | hw/bt.c | 2 | ||||
-rw-r--r-- | hw/usb/dev-bluetooth.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/hw/bt-hci-csr.c b/hw/bt-hci-csr.c index 772b677ba1..0faabbb585 100644 --- a/hw/bt-hci-csr.c +++ b/hw/bt-hci-csr.c @@ -22,7 +22,7 @@ #include "qemu-char.h" #include "qemu-timer.h" #include "irq.h" -#include "net.h" +#include "bt-host.h" #include "bt.h" struct csrhci_s { diff --git a/hw/bt-hci.c b/hw/bt-hci.c index e54cfd7815..d2ad57faa9 100644 --- a/hw/bt-hci.c +++ b/hw/bt-hci.c @@ -21,7 +21,7 @@ #include "qemu-common.h" #include "qemu-timer.h" #include "usb.h" -#include "net.h" +#include "bt-host.h" #include "bt.h" struct bt_hci_s { @@ -18,7 +18,7 @@ */ #include "qemu-common.h" -#include "net.h" +#include "bt-host.h" #include "bt.h" /* Slave implementations can ignore this */ diff --git a/hw/usb/dev-bluetooth.c b/hw/usb/dev-bluetooth.c index 39984f53eb..4a37442288 100644 --- a/hw/usb/dev-bluetooth.c +++ b/hw/usb/dev-bluetooth.c @@ -21,7 +21,7 @@ #include "qemu-common.h" #include "hw/usb.h" #include "hw/usb/desc.h" -#include "net.h" +#include "bt-host.h" #include "hw/bt.h" struct USBBtState { |