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 <piotr.pryga@nordicsemi.no>
This commit is contained in:
Piotr Pryga 2020-12-02 04:51:26 -08:00 committed by Carles Cufí
parent 43a1304e9a
commit 9d711d6e09

View file

@ -5,13 +5,14 @@
*/
#include <stdint.h>
#include <assert.h>
#include <bluetooth/hci.h>
#include <bluetooth/l2cap.h>
#include <bluetooth/conn.h>
#include <bluetooth/direction.h>
#include <sys/byteorder.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/conn.h>
#include <bluetooth/l2cap.h>
#include <bluetooth/hci.h>
#include <bluetooth/direction.h>
#include "hci_core.h"
#include "conn_internal.h"
#include "direction_internal.h"