aboutsummaryrefslogtreecommitdiff
path: root/bt-host.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-12-17 18:20:05 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2012-12-19 08:32:46 +0100
commit927d4878b0ff319ed87fed9363f314613b0a5ed9 (patch)
tree8be632ec8e42f4cff1aea13be62b2ac94ddaaa96 /bt-host.h
parent9c17d615a66ebd655871bf891ec0fe901ad8b332 (diff)
softmmu: move remaining include files to include/ subdirectories
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'bt-host.h')
-rw-r--r--bt-host.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/bt-host.h b/bt-host.h
deleted file mode 100644
index 2bc6d53cca..0000000000
--- a/bt-host.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef BT_HOST_H
-#define BT_HOST_H
-
-/* 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);
-};
-
-/* bt-host.c */
-struct HCIInfo *bt_host_hci(const char *id);
-struct HCIInfo *qemu_next_hci(void);
-
-#endif