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 #include <zephyr/devicetree.h>
10 #include <zephyr/net_buf.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 struct bt_dev_raw {
17 	const struct device *hci;
18 };
19 
20 int bt_hci_recv(const struct device *dev, struct net_buf *buf);
21 
22 extern struct bt_dev_raw bt_dev;
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif /* __BT_HCI_RAW_INTERNAL_H */
29