hfp: add missing default

This commit is contained in:
Matthias Ringwald 2023-11-01 15:06:17 +01:00
parent caeaa206eb
commit 75389f8089
2 changed files with 4 additions and 0 deletions

View File

@ -3271,6 +3271,8 @@ void hfp_ag_create_sdp_record_with_codecs(uint8_t * service, uint32_t service_re
case HFP_CODEC_LC3_SWB:
sdp_features |= 1 << 8;
break;
default:
break;
}
}
}

View File

@ -2304,6 +2304,8 @@ void hfp_hf_create_sdp_record_with_codecs(uint8_t * service, uint32_t service_re
case HFP_CODEC_LC3_SWB:
sdp_features |= 1 << 8;
break;
default:
break;
}
}
}