diff options
-rw-r--r-- | system/gd/rust/linux/stack/src/bluetooth_media.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/system/gd/rust/linux/stack/src/bluetooth_media.rs b/system/gd/rust/linux/stack/src/bluetooth_media.rs index fef3369b36..25079b1586 100644 --- a/system/gd/rust/linux/stack/src/bluetooth_media.rs +++ b/system/gd/rust/linux/stack/src/bluetooth_media.rs @@ -724,12 +724,7 @@ impl BluetoothMedia { self.start_sco_call_impl(addr.to_string(), false, HfpCodecBitId::NONE); } - if self.should_insert_call_when_sco_start(addr) { - info!( - "[{}]: UHID creation skipped due to interop workaround", - DisplayAddress(&addr) - ); - } else { + if self.phone_ops_enabled { self.uhid_create(addr); } } |