Skip to content

Commit b04d638

Browse files
Thalleykartben
authored andcommitted
Bluetooth: Audio: Fix includes
Updates the includes in a a few files to avoid including unused header files and include the ones that are used. Signed-off-by: Emil Gydesen <[email protected]>
1 parent b9ddaf7 commit b04d638

File tree

5 files changed

+4
-1
lines changed

5 files changed

+4
-1
lines changed

subsys/bluetooth/audio/audio_internal.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*
66
* SPDX-License-Identifier: Apache-2.0
77
*/
8+
#include <stdbool.h>
89
#include <stddef.h>
910
#include <stdint.h>
1011
#include <sys/types.h>

subsys/bluetooth/audio/bap_iso.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
#include <stdbool.h>
1111
#include <stddef.h>
12+
#include <stdint.h>
1213
#include <string.h>
1314

1415
#include <zephyr/autoconf.h>

subsys/bluetooth/audio/bap_stream.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
*/
99

1010
#include <stdbool.h>
11-
#include <stdint.h>
1211

1312
#include <zephyr/bluetooth/audio/audio.h>
1413
#include <zephyr/bluetooth/audio/bap.h>

subsys/bluetooth/audio/ccp_call_control_client.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*/
77

88
#include <errno.h>
9+
#include <stdbool.h>
910
#include <stddef.h>
1011
#include <stdint.h>
1112
#include <string.h>

subsys/bluetooth/audio/ccp_call_control_server.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*/
77

88
#include <errno.h>
9+
#include <stdbool.h>
910
#include <stddef.h>
1011
#include <stdint.h>
1112

0 commit comments

Comments
 (0)