Commit 533e35d4 authored by Johan Hedberg's avatar Johan Hedberg Committed by Marcel Holtmann

Bluetooth: Convert SMP flags into an enum

There's no reason to have explicit values for these flags. Convert them
to an enum to be consistent with other similar flags.
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent ddf4ba07
...@@ -35,11 +35,13 @@ ...@@ -35,11 +35,13 @@
#define AUTH_REQ_MASK 0x07 #define AUTH_REQ_MASK 0x07
#define SMP_FLAG_TK_VALID 1 enum {
#define SMP_FLAG_CFM_PENDING 2 SMP_FLAG_TK_VALID,
#define SMP_FLAG_MITM_AUTH 3 SMP_FLAG_CFM_PENDING,
#define SMP_FLAG_COMPLETE 4 SMP_FLAG_MITM_AUTH,
#define SMP_FLAG_INITIATOR 5 SMP_FLAG_COMPLETE,
SMP_FLAG_INITIATOR,
};
struct smp_chan { struct smp_chan {
struct l2cap_conn *conn; struct l2cap_conn *conn;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment