BLE : Fixing addr_type issue in l2cap_le_coc

Fixing the addr_type issue in l2cap_le_coc.
When trying to connect remote device from l2cap le coc,
the addr_type is not fetching from the inquiry database.
So its always treating remote device addr type as "public".

Fix:
Getting the addr_type from the inquiry database and updating it
in the list.

Change-Id: Id045d4fbcba8562ae7221aa133ae8334a163eca8
CRs-Fixed: 2520318
diff --git a/system_bt_ext/btif/src/btif_l2cap.cc b/system_bt_ext/btif/src/btif_l2cap.cc
index 4107d86..3b799eb 100644
--- a/system_bt_ext/btif/src/btif_l2cap.cc
+++ b/system_bt_ext/btif/src/btif_l2cap.cc
@@ -35,6 +35,7 @@
 #define LOG_TAG "bluedroid"
 
 #include "btif_api.h"
+#include "btif_config.h"
 #include "bt_utils.h"
 #include "l2cdefs.h"
 #include "l2c_api.h"
@@ -238,6 +239,14 @@
 {
     BTIF_TRACE_DEBUG("LE-L2CAP: %s:: %s", __FUNCTION__, address.ToString().c_str());
 
+    int addr_type = 0;
+    int device_type = 0;
+    if (btif_get_address_type(address, &addr_type) &&
+          btif_get_device_type(address, &device_type) &&
+          device_type != BT_DEVICE_TYPE_BREDR) {
+        BTA_DmAddBleDevice(address, addr_type, device_type);
+    }
+
     if (0 == (g_lcid = L2CA_CONNECT_COC_REQ (le_psm, address, p_cfg))) {
         BTIF_TRACE_ERROR("LE-L2CAP: L2CA_LE_CreditBasedConn_Req failed for le_psm ");
     }