2016-11-16 23:24:27 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-11-16 23:24:27 +08:00
|
|
|
*/
|
|
|
|
#ifndef __BT_HCI_RAW_INTERNAL_H
|
|
|
|
#define __BT_HCI_RAW_INTERNAL_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct bt_dev_raw {
|
|
|
|
/* Registered HCI driver */
|
2017-03-14 21:00:15 +08:00
|
|
|
const struct bt_hci_driver *drv;
|
2016-11-16 23:24:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct bt_dev_raw bt_dev;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __BT_HCI_RAW_INTERNAL_H */
|