hci: fix unused warning

This commit is contained in:
Matthias Ringwald 2021-11-18 21:10:50 +01:00
parent 31b1e95416
commit 9885fb2da1

View File

@ -1142,10 +1142,12 @@ bool hci_non_flushable_packet_boundary_flag_supported(void){
return (hci_stack->local_supported_features[6u] & (1u << 6u)) != 0u;
}
#ifdef ENABLE_CLASSIC
static int gap_ssp_supported(void){
// No. 51, byte 6, bit 3
return (hci_stack->local_supported_features[6u] & (1u << 3u)) != 0u;
}
#endif
static int hci_classic_supported(void){
#ifdef ENABLE_CLASSIC