Bluetooth: hci_conn: Remove a redundant check for HFP offload
authorZijun Hu <quic_zijuhu@quicinc.com>
Mon, 22 Apr 2024 14:46:34 +0000 (22:46 +0800)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Tue, 14 May 2024 14:51:05 +0000 (10:51 -0400)
Remove a redundant check !hdev->get_codec_config_data.

Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
net/bluetooth/hci_conn.c

index 05346250f7195be3e01b11a0a671193f30316c5e..c1d6b4d713b40f07c8ec91e540adb750769f5413 100644 (file)
@@ -241,13 +241,13 @@ static int configure_datapath_sync(struct hci_dev *hdev, struct bt_codec *codec)
        __u8 vnd_len, *vnd_data = NULL;
        struct hci_op_configure_data_path *cmd = NULL;
 
+       /* Do not take below 2 checks as error since the 1st means user do not
+        * want to use HFP offload mode and the 2nd means the vendor controller
+        * do not need to send below HCI command for offload mode.
+        */
        if (!codec->data_path || !hdev->get_codec_config_data)
                return 0;
 
-       /* Do not take me as error */
-       if (!hdev->get_codec_config_data)
-               return 0;
-
        err = hdev->get_codec_config_data(hdev, ESCO_LINK, codec, &vnd_len,
                                          &vnd_data);
        if (err < 0)