struct hci_conn_params *hci_pend_le_conn_lookup(struct hci_dev *hdev,
                                                bdaddr_t *addr, u8 addr_type);
-void hci_pend_le_conn_add(struct hci_dev *hdev, struct hci_conn_params *params);
 
 void hci_update_background_scan(struct hci_dev *hdev);
 
 
 }
 
 /* This function requires the caller holds hdev->lock */
-void hci_pend_le_conn_add(struct hci_dev *hdev, struct hci_conn_params *params)
-{
-       list_del_init(¶ms->action);
-       list_add(¶ms->action, &hdev->pend_le_conns);
-
-       BT_DBG("addr %pMR (type %u)", ¶ms->addr, params->addr_type);
-
-       hci_update_background_scan(hdev);
-}
-
 struct hci_conn_params *hci_conn_params_add(struct hci_dev *hdev,
                                            bdaddr_t *addr, u8 addr_type)
 {