Skip to content

Commit 30d1d0e

Browse files
jhedbergaescolar
authored andcommitted
Bluetooth: Host: Remove deprecated HCI driver API
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 <[email protected]>
1 parent 3063f18 commit 30d1d0e

File tree

12 files changed

+43
-429
lines changed

12 files changed

+43
-429
lines changed

doc/connectivity/bluetooth/api/hci_drivers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ HCI Drivers
88
API Reference
99
*************
1010

11-
.. doxygengroup:: bt_hci_driver
11+
.. doxygengroup:: bt_hci_api

include/zephyr/drivers/bluetooth/hci_driver.h

Lines changed: 0 additions & 242 deletions
This file was deleted.

subsys/bluetooth/controller/hci/hci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include <zephyr/sys/byteorder.h>
1616
#include <zephyr/sys/atomic.h>
1717

18-
#include <zephyr/drivers/bluetooth/hci_driver.h>
18+
#include <zephyr/drivers/bluetooth.h>
1919

2020
#include <zephyr/bluetooth/hci_types.h>
2121
#include <zephyr/bluetooth/hci_vs.h>

subsys/bluetooth/host/conn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <zephyr/bluetooth/bluetooth.h>
2525
#include <zephyr/bluetooth/direction.h>
2626
#include <zephyr/bluetooth/conn.h>
27-
#include <zephyr/drivers/bluetooth/hci_driver.h>
27+
#include <zephyr/bluetooth/hci_vs.h>
2828
#include <zephyr/bluetooth/att.h>
2929

3030
#include "common/assert.h"

subsys/bluetooth/host/hci_common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include <stdint.h>
88
#include <zephyr/sys/byteorder.h>
9-
#include <zephyr/drivers/bluetooth/hci_driver.h>
9+
#include <zephyr/drivers/bluetooth.h>
1010
#include "common/assert.h"
1111

1212
struct net_buf *bt_hci_evt_create(uint8_t evt, uint8_t len)

0 commit comments

Comments
 (0)