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 /net.h | |
| parent | f8fe796407d8b340def61a6b57991e47aee3cfc4 (diff) | |
| download | focaccia-qemu-090f7ac5ba433ef9de7004b8e8304d06bd9ffd7d.tar.gz focaccia-qemu-090f7ac5ba433ef9de7004b8e8304d06bd9ffd7d.zip | |
net: move Bluetooth stuff out of net.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'net.h')
| -rw-r--r-- | net.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/net.h b/net.h index 04fda1d6c8..1d0816bc0a 100644 --- a/net.h +++ b/net.h @@ -133,20 +133,6 @@ extern int nb_nics; extern NICInfo nd_table[MAX_NICS]; extern int default_net; -/* BT HCI info */ - -struct HCIInfo { - int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr); - void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len); - void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len); - void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len); - void *opaque; - void (*evt_recv)(void *opaque, const uint8_t *data, int len); - void (*acl_recv)(void *opaque, const uint8_t *data, int len); -}; - -struct HCIInfo *qemu_next_hci(void); - /* from net.c */ extern const char *legacy_tftp_prefix; extern const char *legacy_bootp_filename; |