1 /*
2  * Copyright (c) 2016 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef __BT_HCI_RAW_INTERNAL_H
7 #define __BT_HCI_RAW_INTERNAL_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 struct bt_dev_raw {
14 	/* Registered HCI driver */
15 	const struct bt_hci_driver *drv;
16 };
17 
18 extern struct bt_dev_raw bt_dev;
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif /* __BT_HCI_RAW_INTERNAL_H */
25