Lines Matching refs:info
27 struct ath_mci_profile_info *info)
31 if (list_empty(&mci->info))
34 list_for_each_entry(entry, &mci->info, list) {
35 if (entry->conn_handle == info->conn_handle)
43 struct ath_mci_profile_info *info)
49 (info->type == MCI_GPM_COEX_PROFILE_VOICE))
53 (info->type != MCI_GPM_COEX_PROFILE_VOICE))
60 memcpy(entry, info, 10);
61 INC_PROF(mci, info);
62 list_add_tail(&entry->list, &mci->info);
63 if (info->type == MCI_GPM_COEX_PROFILE_VOICE) {
64 if (info->voice_type < sizeof(voice_priority))
65 mci->voice_priority = voice_priority[info->voice_type];
87 struct ath_mci_profile_info *info, *tinfo;
92 if (list_empty(&mci->info))
95 list_for_each_entry_safe(info, tinfo, &mci->info, list) {
96 list_del(&info->list);
97 DEC_PROF(mci, info);
98 kfree(info);
125 struct ath_mci_profile_info *info;
141 info = list_first_entry(&mci->info,
145 if (info->T == 12)
147 else if (info->T == 6) {
298 struct ath_mci_profile_info *info)
305 entry = ath_mci_find_profile(mci, info);
315 if (entry->type != info->type) {
317 INC_PROF(mci, info);
319 memcpy(entry, info, 10);
322 if (info->start) {
323 if (!entry && !ath_mci_add_profile(common, mci, info))
337 struct ath_mci_profile_info info;
344 info.conn_handle = status->conn_handle;
345 if (ath_mci_find_profile(mci, &info))
687 /* update and send wlan channels info to BT */