From efec1aa79d861fd5685b5b34a020a98322ec2f4b Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Mon, 28 Nov 2016 11:46:51 +0100 Subject: [PATCH] Bluetooth: Fix missing prototype config subsys/bluetooth/host/hci_ecc.c: At top level: subsys/bluetooth/host/hci_ecc.c:277:6: warning: no previous prototype for 'bt_hci_ecc_init' [-Wmissing-prototypes] void bt_hci_ecc_init(void) ^ CC subsys/bluetooth/host/conn.o Change-Id: I920d8b6b66c82be932c579461310505c6d402c08 Signed-off-by: Szymon Janc --- subsys/bluetooth/host/hci_ecc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/bluetooth/host/hci_ecc.c b/subsys/bluetooth/host/hci_ecc.c index 45bee741040..41c7acb6de3 100644 --- a/subsys/bluetooth/host/hci_ecc.c +++ b/subsys/bluetooth/host/hci_ecc.c @@ -31,6 +31,7 @@ #include #include #include +#include "hci_ecc.h" #ifdef CONFIG_BLUETOOTH_HCI_RAW #include #include "hci_raw_internal.h"