Skip to content

Commit d9dd2e4

Browse files
lylezhu2012kartben
authored andcommitted
Bluetooth: HFP_HF: fix typo
Change `HF_SINGNAL_IND` to `HF_SIGNAL_IND`. Signed-off-by: Lyle Zhu <[email protected]>
1 parent 0d7eca6 commit d9dd2e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/zephyr/bluetooth/classic/hfp_hf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ enum hfp_hf_ag_indicators {
854854
HF_CALL_IND, /* AG call indicator */
855855
HF_CALL_SETUP_IND, /* AG call setup indicator */
856856
HF_CALL_HELD_IND, /* AG call held indicator */
857-
HF_SINGNAL_IND, /* AG signal indicator */
857+
HF_SIGNAL_IND, /* AG signal indicator */
858858
HF_ROAM_IND, /* AG roaming indicator */
859859
HF_BATTERY_IND /* AG battery indicator */
860860
};

subsys/bluetooth/host/classic/hfp_hf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ void ag_indicator_handle_values(struct at_client *hf_at, uint32_t index,
12001200
case HF_CALL_HELD_IND:
12011201
ag_indicator_handle_call_held(hf, value);
12021202
break;
1203-
case HF_SINGNAL_IND:
1203+
case HF_SIGNAL_IND:
12041204
if (bt_hf->signal) {
12051205
bt_hf->signal(hf, value);
12061206
}

0 commit comments

Comments
 (0)