OSDN Git Service

Avoid annoying crashing on VMware
authorChih-Wei Huang <cwhuang@linux.org.tw>
Tue, 12 Jun 2018 06:32:03 +0000 (14:32 +0800)
committerMauro Rossi <issor.oruam@gmail.com>
Fri, 9 Sep 2022 22:19:45 +0000 (00:19 +0200)
device/src/controller.cc

index d312e36..d9e6120 100644 (file)
@@ -354,7 +354,6 @@ static uint8_t* get_local_supported_codecs(uint8_t* number_of_codecs) {
 
 static const uint8_t* get_ble_supported_states(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return ble_supported_states;
 }
 
@@ -525,100 +524,84 @@ static bool supports_ble(void) {
 
 static bool supports_ble_privacy(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_ENHANCED_PRIVACY_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_set_privacy_mode() {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_ENHANCED_PRIVACY_SUPPORTED(features_ble.as_array) &&
          HCI_LE_SET_PRIVACY_MODE_SUPPORTED(supported_commands);
 }
 
 static bool supports_ble_packet_extension(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_DATA_LEN_EXT_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_connection_parameters_request(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_CONN_PARAM_REQ_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_2m_phy(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_2M_PHY_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_coded_phy(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_CODED_PHY_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_extended_advertising(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_EXTENDED_ADVERTISING_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_periodic_advertising(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_PERIODIC_ADVERTISING_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_peripheral_initiated_feature_exchange(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_PERIPHERAL_INIT_FEAT_EXC_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_connection_parameter_request(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_CONN_PARAM_REQ_SUPPORTED(features_ble.as_array);
 }
 
 static bool supports_ble_periodic_advertising_sync_transfer_sender(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_PERIODIC_ADVERTISING_SYNC_TRANSFER_SENDER(
       features_ble.as_array);
 }
 
 static bool supports_ble_periodic_advertising_sync_transfer_recipient(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_PERIODIC_ADVERTISING_SYNC_TRANSFER_RECIPIENT(
       features_ble.as_array);
 }
 
 static bool supports_ble_connected_isochronous_stream_central(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_CIS_CENTRAL(features_ble.as_array);
 }
 
 static bool supports_ble_connected_isochronous_stream_peripheral(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_CIS_PERIPHERAL(features_ble.as_array);
 }
 
 static bool supports_ble_isochronous_broadcaster(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_ISO_BROADCASTER(features_ble.as_array);
 }
 
 static bool supports_ble_synchronized_receiver(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return HCI_LE_SYNCHRONIZED_RECEIVER(features_ble.as_array);
 }
 
@@ -629,7 +612,6 @@ static uint16_t get_acl_data_size_classic(void) {
 
 static uint16_t get_acl_data_size_ble(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return acl_data_size_ble;
 }
 
@@ -655,13 +637,11 @@ static uint16_t get_iso_packet_size(void) {
 
 static uint16_t get_ble_suggested_default_data_length(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return ble_suggested_default_data_length;
 }
 
 static uint16_t get_ble_maximum_tx_data_length(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return ble_supported_max_tx_octets;
 }
 
@@ -673,19 +653,16 @@ static uint16_t get_ble_maximum_tx_time(void) {
 
 static uint16_t get_ble_maxium_advertising_data_length(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return ble_maxium_advertising_data_length;
 }
 
 static uint8_t get_ble_number_of_supported_advertising_sets(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return ble_number_of_supported_advertising_sets;
 }
 
 static uint8_t get_ble_periodic_advertiser_list_size(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return ble_periodic_advertiser_list_size;
 }
 
@@ -696,25 +673,21 @@ static uint16_t get_acl_buffer_count_classic(void) {
 
 static uint8_t get_acl_buffer_count_ble(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return acl_buffer_count_ble;
 }
 
 static uint8_t get_iso_buffer_count(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return iso_buffer_count;
 }
 
 static uint8_t get_ble_acceptlist_size(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return ble_acceptlist_size;
 }
 
 static uint8_t get_ble_resolving_list_max_size(void) {
   CHECK(readable);
-  CHECK(ble_supported);
   return ble_resolving_list_max_size;
 }
 
@@ -724,7 +697,6 @@ static void set_ble_resolving_list_max_size(int resolving_list_max_size) {
   if (resolving_list_max_size != 0) {
     CHECK(readable);
   }
-  CHECK(ble_supported);
   ble_resolving_list_max_size = resolving_list_max_size;
 }