Bluetooth: Add dependency includes to hci.h

The hci.h header file depends on the integer type definitions from
stdint.h and the PACK_STRUCT macro from toolchain.h. This patch adds
those so that users of hci.h don't need to be concerned of this
detail.

Change-Id: Ib1856cdec75a3bab1b86bc832cdec6ad0461db6d
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Johan Hedberg 2015-04-28 11:02:55 +03:00 committed by Anas Nashif
commit 550cdd9717

View file

@ -32,6 +32,9 @@
#ifndef __BT_HCI_H
#define __BT_HCI_H
#include <toolchain.h>
#include <stdint.h>
/* EIR/AD definitions */
#define BT_EIR_FLAGS 0x01 /* AD flags */
#define BT_EIR_NAME_COMPLETE 0x09 /* Complete name */