Lines Matching full:rp

121 	struct hci_rp_role_discovery *rp = (void *) skb->data;  in hci_cc_role_discovery()  local
124 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_role_discovery()
126 if (rp->status) in hci_cc_role_discovery()
131 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle)); in hci_cc_role_discovery()
133 conn->role = rp->role; in hci_cc_role_discovery()
140 struct hci_rp_read_link_policy *rp = (void *) skb->data; in hci_cc_read_link_policy() local
143 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_link_policy()
145 if (rp->status) in hci_cc_read_link_policy()
150 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle)); in hci_cc_read_link_policy()
152 conn->link_policy = __le16_to_cpu(rp->policy); in hci_cc_read_link_policy()
159 struct hci_rp_write_link_policy *rp = (void *) skb->data; in hci_cc_write_link_policy() local
163 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_write_link_policy()
165 if (rp->status) in hci_cc_write_link_policy()
174 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle)); in hci_cc_write_link_policy()
184 struct hci_rp_read_def_link_policy *rp = (void *) skb->data; in hci_cc_read_def_link_policy() local
186 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_def_link_policy()
188 if (rp->status) in hci_cc_read_def_link_policy()
191 hdev->link_policy = __le16_to_cpu(rp->policy); in hci_cc_read_def_link_policy()
248 struct hci_rp_read_stored_link_key *rp = (void *)skb->data; in hci_cc_read_stored_link_key() local
251 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_stored_link_key()
257 if (!rp->status && sent->read_all == 0x01) { in hci_cc_read_stored_link_key()
258 hdev->stored_max_keys = rp->max_keys; in hci_cc_read_stored_link_key()
259 hdev->stored_num_keys = rp->num_keys; in hci_cc_read_stored_link_key()
266 struct hci_rp_delete_stored_link_key *rp = (void *)skb->data; in hci_cc_delete_stored_link_key() local
268 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_delete_stored_link_key()
270 if (rp->status) in hci_cc_delete_stored_link_key()
273 if (rp->num_keys <= hdev->stored_num_keys) in hci_cc_delete_stored_link_key()
274 hdev->stored_num_keys -= rp->num_keys; in hci_cc_delete_stored_link_key()
302 struct hci_rp_read_local_name *rp = (void *) skb->data; in hci_cc_read_local_name() local
304 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_name()
306 if (rp->status) in hci_cc_read_local_name()
311 memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH); in hci_cc_read_local_name()
425 struct hci_rp_read_class_of_dev *rp = (void *) skb->data; in hci_cc_read_class_of_dev() local
427 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_class_of_dev()
429 if (rp->status) in hci_cc_read_class_of_dev()
432 memcpy(hdev->dev_class, rp->dev_class, 3); in hci_cc_read_class_of_dev()
462 struct hci_rp_read_voice_setting *rp = (void *) skb->data; in hci_cc_read_voice_setting() local
465 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_voice_setting()
467 if (rp->status) in hci_cc_read_voice_setting()
470 setting = __le16_to_cpu(rp->voice_setting); in hci_cc_read_voice_setting()
515 struct hci_rp_read_num_supported_iac *rp = (void *) skb->data; in hci_cc_read_num_supported_iac() local
517 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_num_supported_iac()
519 if (rp->status) in hci_cc_read_num_supported_iac()
522 hdev->num_iac = rp->num_iac; in hci_cc_read_num_supported_iac()
591 struct hci_rp_read_local_version *rp = (void *) skb->data; in hci_cc_read_local_version() local
593 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_version()
595 if (rp->status) in hci_cc_read_local_version()
600 hdev->hci_ver = rp->hci_ver; in hci_cc_read_local_version()
601 hdev->hci_rev = __le16_to_cpu(rp->hci_rev); in hci_cc_read_local_version()
602 hdev->lmp_ver = rp->lmp_ver; in hci_cc_read_local_version()
603 hdev->manufacturer = __le16_to_cpu(rp->manufacturer); in hci_cc_read_local_version()
604 hdev->lmp_subver = __le16_to_cpu(rp->lmp_subver); in hci_cc_read_local_version()
611 struct hci_rp_read_local_commands *rp = (void *) skb->data; in hci_cc_read_local_commands() local
613 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_commands()
615 if (rp->status) in hci_cc_read_local_commands()
620 memcpy(hdev->commands, rp->commands, sizeof(hdev->commands)); in hci_cc_read_local_commands()
626 struct hci_rp_read_auth_payload_to *rp = (void *)skb->data; in hci_cc_read_auth_payload_timeout() local
629 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_auth_payload_timeout()
631 if (rp->status) in hci_cc_read_auth_payload_timeout()
636 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle)); in hci_cc_read_auth_payload_timeout()
638 conn->auth_payload_timeout = __le16_to_cpu(rp->timeout); in hci_cc_read_auth_payload_timeout()
646 struct hci_rp_write_auth_payload_to *rp = (void *)skb->data; in hci_cc_write_auth_payload_timeout() local
650 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_write_auth_payload_timeout()
652 if (rp->status) in hci_cc_write_auth_payload_timeout()
661 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle)); in hci_cc_write_auth_payload_timeout()
671 struct hci_rp_read_local_features *rp = (void *) skb->data; in hci_cc_read_local_features() local
673 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_features()
675 if (rp->status) in hci_cc_read_local_features()
678 memcpy(hdev->features, rp->features, 8); in hci_cc_read_local_features()
721 struct hci_rp_read_local_ext_features *rp = (void *) skb->data; in hci_cc_read_local_ext_features() local
723 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_ext_features()
725 if (rp->status) in hci_cc_read_local_ext_features()
728 if (hdev->max_page < rp->max_page) in hci_cc_read_local_ext_features()
729 hdev->max_page = rp->max_page; in hci_cc_read_local_ext_features()
731 if (rp->page < HCI_MAX_PAGES) in hci_cc_read_local_ext_features()
732 memcpy(hdev->features[rp->page], rp->features, 8); in hci_cc_read_local_ext_features()
738 struct hci_rp_read_flow_control_mode *rp = (void *) skb->data; in hci_cc_read_flow_control_mode() local
740 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_flow_control_mode()
742 if (rp->status) in hci_cc_read_flow_control_mode()
745 hdev->flow_ctl_mode = rp->mode; in hci_cc_read_flow_control_mode()
750 struct hci_rp_read_buffer_size *rp = (void *) skb->data; in hci_cc_read_buffer_size() local
752 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_buffer_size()
754 if (rp->status) in hci_cc_read_buffer_size()
757 hdev->acl_mtu = __le16_to_cpu(rp->acl_mtu); in hci_cc_read_buffer_size()
758 hdev->sco_mtu = rp->sco_mtu; in hci_cc_read_buffer_size()
759 hdev->acl_pkts = __le16_to_cpu(rp->acl_max_pkt); in hci_cc_read_buffer_size()
760 hdev->sco_pkts = __le16_to_cpu(rp->sco_max_pkt); in hci_cc_read_buffer_size()
776 struct hci_rp_read_bd_addr *rp = (void *) skb->data; in hci_cc_read_bd_addr() local
778 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_bd_addr()
780 if (rp->status) in hci_cc_read_bd_addr()
784 bacpy(&hdev->bdaddr, &rp->bdaddr); in hci_cc_read_bd_addr()
787 bacpy(&hdev->setup_addr, &rp->bdaddr); in hci_cc_read_bd_addr()
793 struct hci_rp_read_local_pairing_opts *rp = (void *) skb->data; in hci_cc_read_local_pairing_opts() local
795 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_pairing_opts()
797 if (rp->status) in hci_cc_read_local_pairing_opts()
802 hdev->pairing_opts = rp->pairing_opts; in hci_cc_read_local_pairing_opts()
803 hdev->max_enc_key_size = rp->max_key_size; in hci_cc_read_local_pairing_opts()
810 struct hci_rp_read_page_scan_activity *rp = (void *) skb->data; in hci_cc_read_page_scan_activity() local
812 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_page_scan_activity()
814 if (rp->status) in hci_cc_read_page_scan_activity()
818 hdev->page_scan_interval = __le16_to_cpu(rp->interval); in hci_cc_read_page_scan_activity()
819 hdev->page_scan_window = __le16_to_cpu(rp->window); in hci_cc_read_page_scan_activity()
845 struct hci_rp_read_page_scan_type *rp = (void *) skb->data; in hci_cc_read_page_scan_type() local
847 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_page_scan_type()
849 if (rp->status) in hci_cc_read_page_scan_type()
853 hdev->page_scan_type = rp->type; in hci_cc_read_page_scan_type()
875 struct hci_rp_read_data_block_size *rp = (void *) skb->data; in hci_cc_read_data_block_size() local
877 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_data_block_size()
879 if (rp->status) in hci_cc_read_data_block_size()
882 hdev->block_mtu = __le16_to_cpu(rp->max_acl_len); in hci_cc_read_data_block_size()
883 hdev->block_len = __le16_to_cpu(rp->block_len); in hci_cc_read_data_block_size()
884 hdev->num_blocks = __le16_to_cpu(rp->num_blocks); in hci_cc_read_data_block_size()
894 struct hci_rp_read_clock *rp = (void *) skb->data; in hci_cc_read_clock() local
900 if (skb->len < sizeof(*rp)) in hci_cc_read_clock()
903 if (rp->status) in hci_cc_read_clock()
913 hdev->clock = le32_to_cpu(rp->clock); in hci_cc_read_clock()
917 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle)); in hci_cc_read_clock()
919 conn->clock = le32_to_cpu(rp->clock); in hci_cc_read_clock()
920 conn->clock_accuracy = le16_to_cpu(rp->accuracy); in hci_cc_read_clock()
930 struct hci_rp_read_local_amp_info *rp = (void *) skb->data; in hci_cc_read_local_amp_info() local
932 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_amp_info()
934 if (rp->status) in hci_cc_read_local_amp_info()
937 hdev->amp_status = rp->amp_status; in hci_cc_read_local_amp_info()
938 hdev->amp_total_bw = __le32_to_cpu(rp->total_bw); in hci_cc_read_local_amp_info()
939 hdev->amp_max_bw = __le32_to_cpu(rp->max_bw); in hci_cc_read_local_amp_info()
940 hdev->amp_min_latency = __le32_to_cpu(rp->min_latency); in hci_cc_read_local_amp_info()
941 hdev->amp_max_pdu = __le32_to_cpu(rp->max_pdu); in hci_cc_read_local_amp_info()
942 hdev->amp_type = rp->amp_type; in hci_cc_read_local_amp_info()
943 hdev->amp_pal_cap = __le16_to_cpu(rp->pal_cap); in hci_cc_read_local_amp_info()
944 hdev->amp_assoc_size = __le16_to_cpu(rp->max_assoc_size); in hci_cc_read_local_amp_info()
945 hdev->amp_be_flush_to = __le32_to_cpu(rp->be_flush_to); in hci_cc_read_local_amp_info()
946 hdev->amp_max_flush_to = __le32_to_cpu(rp->max_flush_to); in hci_cc_read_local_amp_info()
952 struct hci_rp_read_inq_rsp_tx_power *rp = (void *) skb->data; in hci_cc_read_inq_rsp_tx_power() local
954 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_inq_rsp_tx_power()
956 if (rp->status) in hci_cc_read_inq_rsp_tx_power()
959 hdev->inq_tx_power = rp->tx_power; in hci_cc_read_inq_rsp_tx_power()
965 struct hci_rp_read_def_err_data_reporting *rp = (void *)skb->data; in hci_cc_read_def_err_data_reporting() local
967 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_def_err_data_reporting()
969 if (rp->status) in hci_cc_read_def_err_data_reporting()
972 hdev->err_data_reporting = rp->err_data_reporting; in hci_cc_read_def_err_data_reporting()
995 struct hci_rp_pin_code_reply *rp = (void *) skb->data; in hci_cc_pin_code_reply() local
999 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_pin_code_reply()
1004 mgmt_pin_code_reply_complete(hdev, &rp->bdaddr, rp->status); in hci_cc_pin_code_reply()
1006 if (rp->status) in hci_cc_pin_code_reply()
1023 struct hci_rp_pin_code_neg_reply *rp = (void *) skb->data; in hci_cc_pin_code_neg_reply() local
1025 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_pin_code_neg_reply()
1030 mgmt_pin_code_neg_reply_complete(hdev, &rp->bdaddr, in hci_cc_pin_code_neg_reply()
1031 rp->status); in hci_cc_pin_code_neg_reply()
1039 struct hci_rp_le_read_buffer_size *rp = (void *) skb->data; in hci_cc_le_read_buffer_size() local
1041 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_le_read_buffer_size()
1043 if (rp->status) in hci_cc_le_read_buffer_size()
1046 hdev->le_mtu = __le16_to_cpu(rp->le_mtu); in hci_cc_le_read_buffer_size()
1047 hdev->le_pkts = rp->le_max_pkt; in hci_cc_le_read_buffer_size()
1057 struct hci_rp_le_read_local_features *rp = (void *) skb->data; in hci_cc_le_read_local_features() local
1059 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_le_read_local_features()
1061 if (rp->status) in hci_cc_le_read_local_features()
1064 memcpy(hdev->le_features, rp->features, 8); in hci_cc_le_read_local_features()
1070 struct hci_rp_le_read_adv_tx_power *rp = (void *) skb->data; in hci_cc_le_read_adv_tx_power() local
1072 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_le_read_adv_tx_power()
1074 if (rp->status) in hci_cc_le_read_adv_tx_power()
1077 hdev->adv_tx_power = rp->tx_power; in hci_cc_le_read_adv_tx_power()
1082 struct hci_rp_user_confirm_reply *rp = (void *) skb->data; in hci_cc_user_confirm_reply() local
1084 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_user_confirm_reply()
1089 mgmt_user_confirm_reply_complete(hdev, &rp->bdaddr, ACL_LINK, 0, in hci_cc_user_confirm_reply()
1090 rp->status); in hci_cc_user_confirm_reply()
1098 struct hci_rp_user_confirm_reply *rp = (void *) skb->data; in hci_cc_user_confirm_neg_reply() local
1100 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_user_confirm_neg_reply()
1105 mgmt_user_confirm_neg_reply_complete(hdev, &rp->bdaddr, in hci_cc_user_confirm_neg_reply()
1106 ACL_LINK, 0, rp->status); in hci_cc_user_confirm_neg_reply()
1113 struct hci_rp_user_confirm_reply *rp = (void *) skb->data; in hci_cc_user_passkey_reply() local
1115 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_user_passkey_reply()
1120 mgmt_user_passkey_reply_complete(hdev, &rp->bdaddr, ACL_LINK, in hci_cc_user_passkey_reply()
1121 0, rp->status); in hci_cc_user_passkey_reply()
1129 struct hci_rp_user_confirm_reply *rp = (void *) skb->data; in hci_cc_user_passkey_neg_reply() local
1131 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_user_passkey_neg_reply()
1136 mgmt_user_passkey_neg_reply_complete(hdev, &rp->bdaddr, in hci_cc_user_passkey_neg_reply()
1137 ACL_LINK, 0, rp->status); in hci_cc_user_passkey_neg_reply()
1145 struct hci_rp_read_local_oob_data *rp = (void *) skb->data; in hci_cc_read_local_oob_data() local
1147 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_oob_data()
1153 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data; in hci_cc_read_local_oob_ext_data() local
1155 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_local_oob_ext_data()
1244 struct hci_rp_le_read_transmit_power *rp = (void *)skb->data; in hci_cc_le_read_transmit_power() local
1246 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_le_read_transmit_power()
1248 if (rp->status) in hci_cc_le_read_transmit_power()
1251 hdev->min_le_tx_power = rp->min_le_tx_power; in hci_cc_le_read_transmit_power()
1252 hdev->max_le_tx_power = rp->max_le_tx_power; in hci_cc_le_read_transmit_power()
1526 struct hci_rp_le_read_num_supported_adv_sets *rp = (void *) skb->data; in hci_cc_le_read_num_adv_sets() local
1528 BT_DBG("%s status 0x%2.2x No of Adv sets %u", hdev->name, rp->status, in hci_cc_le_read_num_adv_sets()
1529 rp->num_of_sets); in hci_cc_le_read_num_adv_sets()
1531 if (rp->status) in hci_cc_le_read_num_adv_sets()
1534 hdev->le_num_of_adv_sets = rp->num_of_sets; in hci_cc_le_read_num_adv_sets()
1540 struct hci_rp_le_read_accept_list_size *rp = (void *)skb->data; in hci_cc_le_read_accept_list_size() local
1542 BT_DBG("%s status 0x%2.2x size %u", hdev->name, rp->status, rp->size); in hci_cc_le_read_accept_list_size()
1544 if (rp->status) in hci_cc_le_read_accept_list_size()
1547 hdev->le_accept_list_size = rp->size; in hci_cc_le_read_accept_list_size()
1604 struct hci_rp_le_read_supported_states *rp = (void *) skb->data; in hci_cc_le_read_supported_states() local
1606 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_le_read_supported_states()
1608 if (rp->status) in hci_cc_le_read_supported_states()
1611 memcpy(hdev->le_states, rp->le_states, 8); in hci_cc_le_read_supported_states()
1617 struct hci_rp_le_read_def_data_len *rp = (void *) skb->data; in hci_cc_le_read_def_data_len() local
1619 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_le_read_def_data_len()
1621 if (rp->status) in hci_cc_le_read_def_data_len()
1624 hdev->le_def_tx_len = le16_to_cpu(rp->tx_len); in hci_cc_le_read_def_data_len()
1625 hdev->le_def_tx_time = le16_to_cpu(rp->tx_time); in hci_cc_le_read_def_data_len()
1702 struct hci_rp_le_read_resolv_list_size *rp = (void *) skb->data; in hci_cc_le_read_resolv_list_size() local
1704 BT_DBG("%s status 0x%2.2x size %u", hdev->name, rp->status, rp->size); in hci_cc_le_read_resolv_list_size()
1706 if (rp->status) in hci_cc_le_read_resolv_list_size()
1709 hdev->le_resolv_list_size = rp->size; in hci_cc_le_read_resolv_list_size()
1739 struct hci_rp_le_read_max_data_len *rp = (void *) skb->data; in hci_cc_le_read_max_data_len() local
1741 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_le_read_max_data_len()
1743 if (rp->status) in hci_cc_le_read_max_data_len()
1746 hdev->le_max_tx_len = le16_to_cpu(rp->tx_len); in hci_cc_le_read_max_data_len()
1747 hdev->le_max_tx_time = le16_to_cpu(rp->tx_time); in hci_cc_le_read_max_data_len()
1748 hdev->le_max_rx_len = le16_to_cpu(rp->rx_len); in hci_cc_le_read_max_data_len()
1749 hdev->le_max_rx_time = le16_to_cpu(rp->rx_time); in hci_cc_le_read_max_data_len()
1807 struct hci_rp_le_set_ext_adv_params *rp = (void *) skb->data; in hci_cc_set_ext_adv_param() local
1811 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_set_ext_adv_param()
1813 if (rp->status) in hci_cc_set_ext_adv_param()
1824 hdev->adv_tx_power = rp->tx_power; in hci_cc_set_ext_adv_param()
1828 adv_instance->tx_power = rp->tx_power; in hci_cc_set_ext_adv_param()
1838 struct hci_rp_read_rssi *rp = (void *) skb->data; in hci_cc_read_rssi() local
1841 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_rssi()
1843 if (rp->status) in hci_cc_read_rssi()
1848 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle)); in hci_cc_read_rssi()
1850 conn->rssi = rp->rssi; in hci_cc_read_rssi()
1858 struct hci_rp_read_tx_power *rp = (void *) skb->data; in hci_cc_read_tx_power() local
1861 BT_DBG("%s status 0x%2.2x", hdev->name, rp->status); in hci_cc_read_tx_power()
1863 if (rp->status) in hci_cc_read_tx_power()
1872 conn = hci_conn_hash_lookup_handle(hdev, __le16_to_cpu(rp->handle)); in hci_cc_read_tx_power()
1878 conn->tx_power = rp->tx_power; in hci_cc_read_tx_power()
1881 conn->max_tx_power = rp->tx_power; in hci_cc_read_tx_power()
3090 const struct hci_rp_read_enc_key_size *rp; in read_enc_key_size_complete() local
3096 if (!skb || skb->len < sizeof(*rp)) { in read_enc_key_size_complete()
3101 rp = (void *)skb->data; in read_enc_key_size_complete()
3102 handle = le16_to_cpu(rp->handle); in read_enc_key_size_complete()
3114 if (rp->status) { in read_enc_key_size_complete()
3119 conn->enc_key_size = rp->key_size; in read_enc_key_size_complete()