Remove the deprecated HCI driver API which was provided by the hci_driver.h header file. The deprecation happened in Zephyr 3.7, so the API can now be removed for Zephyr 4.1. Signed-off-by: Johan Hedberg <johan.hedberg@silabs.com>
28 lines
470 B
C
28 lines
470 B
C
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef __BT_HCI_RAW_INTERNAL_H
|
|
#define __BT_HCI_RAW_INTERNAL_H
|
|
|
|
#include <zephyr/devicetree.h>
|
|
#include <zephyr/net_buf.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct bt_dev_raw {
|
|
const struct device *hci;
|
|
};
|
|
|
|
int bt_hci_recv(const struct device *dev, struct net_buf *buf);
|
|
|
|
extern struct bt_dev_raw bt_dev;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __BT_HCI_RAW_INTERNAL_H */
|