btfmcodec: Add new transport type

This change adds new transport type, when it is recevied the state
will be moved to IDLE.

Change-Id: Ia728ec151afb78d75444361cba3b2788fc278876
This commit is contained in:
Balakrishna Godavarthi
2023-02-08 16:21:13 +05:30
committed by Gerrit - the friendly Code Review server
parent f3db4b2cdc
commit df0dd43a78
2 changed files with 9 additions and 1 deletions

View File

@@ -9,9 +9,10 @@
enum transport_type {
BT = 1,
BTADV,
NONE,
};
static char *transport_type_text[] = {"BT", "BTADV"};
static char *transport_type_text[] = {"BT", "BTADV", "NONE"};
void btfmcodec_set_current_state(struct btfmcodec_state_machine *, btfmcodec_state);
void btfmcodec_wq_prepare_bearer(struct work_struct *);