Skip to content

Commit 9d711d6

Browse files
ppryga-nordiccarlescufi
authored andcommitted
Bluetooth: host: direction: Fix compilation error
Fix compilation error caused by missing header files. Reorganized order of header files include. Signed-off-by: Piotr Pryga <[email protected]>
1 parent 43a1304 commit 9d711d6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

subsys/bluetooth/host/direction.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
*/
66
#include <stdint.h>
77
#include <assert.h>
8+
#include <sys/byteorder.h>
89

9-
#include <bluetooth/hci.h>
10-
#include <bluetooth/l2cap.h>
10+
#include <bluetooth/bluetooth.h>
1111
#include <bluetooth/conn.h>
12+
#include <bluetooth/l2cap.h>
13+
#include <bluetooth/hci.h>
1214
#include <bluetooth/direction.h>
13-
#include <sys/byteorder.h>
1415

1516
#include "hci_core.h"
1617
#include "conn_internal.h"

0 commit comments

Comments
 (0)