From 701a574c031e2fda2b2ef5395f0317e17f9da08e Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Fri, 9 Nov 2018 05:21:43 -0600 Subject: [PATCH] Bluetooth: host: Fix trivial comment mismatch The endif comment block is for CONFIG_BT_FIXED_PASSKEY not CONFIG_SMP_FIXED_PASSKEY. Fix the comment to match. Signed-off-by: Kumar Gala --- subsys/bluetooth/host/smp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/host/smp.c b/subsys/bluetooth/host/smp.c index 6284fcb5777..a1e0932ffa0 100644 --- a/subsys/bluetooth/host/smp.c +++ b/subsys/bluetooth/host/smp.c @@ -4434,7 +4434,7 @@ int bt_passkey_set(unsigned int passkey) fixed_passkey = passkey; return 0; } -#endif /* CONFIG_SMP_FIXED_PASSKEY */ +#endif /* CONFIG_BT_FIXED_PASSKEY */ void bt_smp_update_keys(struct bt_conn *conn) {