mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 06:43:53 -06:00
hw/bt: Remove HCIInfo from "qemu/typedefs.h"
Files requiring HCIInfo already include "sysemu/bt.h". To clean "qemu/typedefs.h", move the declaration to "sysemu/bt.h" (removing the forward declaration). Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
d183b00e8e
commit
bc8c49d34d
2 changed files with 2 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
/* BT HCI info */
|
||||
|
||||
struct HCIInfo {
|
||||
typedef 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);
|
||||
|
@ -11,7 +11,7 @@ struct HCIInfo {
|
|||
void *opaque;
|
||||
void (*evt_recv)(void *opaque, const uint8_t *data, int len);
|
||||
void (*acl_recv)(void *opaque, const uint8_t *data, int len);
|
||||
};
|
||||
} HCIInfo;
|
||||
|
||||
/* bt-host.c */
|
||||
struct HCIInfo *bt_host_hci(const char *id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue