|
@@ -85,6 +85,9 @@ static struct wpabuf * p2p_build_invitation_req(struct p2p_data *p2p,
|
|
|
p2p_buf_add_device_info(buf, p2p, peer);
|
|
|
p2p_buf_update_ie_hdr(buf, len);
|
|
|
|
|
|
+ p2p_buf_add_pref_channel_list(buf, p2p->pref_freq_list,
|
|
|
+ p2p->num_pref_freq);
|
|
|
+
|
|
|
#ifdef CONFIG_WIFI_DISPLAY
|
|
|
if (wfd_ie)
|
|
|
wpabuf_put_buf(buf, wfd_ie);
|
|
@@ -343,6 +346,12 @@ void p2p_process_invitation_req(struct p2p_data *p2p, const u8 *sa,
|
|
|
p2p_reselect_channel(p2p, &intersection);
|
|
|
}
|
|
|
|
|
|
+ /*
|
|
|
+ * Use the driver preferred frequency list extension if
|
|
|
+ * supported.
|
|
|
+ */
|
|
|
+ p2p_check_pref_chan(p2p, go, dev, &msg);
|
|
|
+
|
|
|
op_freq = p2p_channel_to_freq(p2p->op_reg_class,
|
|
|
p2p->op_channel);
|
|
|
if (op_freq < 0) {
|
|
@@ -534,6 +543,12 @@ void p2p_process_invitation_resp(struct p2p_data *p2p, const u8 *sa,
|
|
|
peer_oper_freq = 0;
|
|
|
}
|
|
|
|
|
|
+ /*
|
|
|
+ * Use the driver preferred frequency list extension if
|
|
|
+ * supported.
|
|
|
+ */
|
|
|
+ p2p_check_pref_chan(p2p, 0, dev, &msg);
|
|
|
+
|
|
|
p2p->cfg->invitation_result(p2p->cfg->cb_ctx, *msg.status,
|
|
|
msg.group_bssid, channels, sa,
|
|
|
freq, peer_oper_freq);
|