|
@@ -29,7 +29,6 @@ int wpas_p2p_connect(struct wpa_supplicant *wpa_s, const u8 *peer_addr,
|
|
|
int pd, int ht40, int vht);
|
|
|
int wpas_p2p_handle_frequency_conflicts(struct wpa_supplicant *wpa_s,
|
|
|
int freq, struct wpa_ssid *ssid);
|
|
|
-int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname);
|
|
|
int wpas_p2p_group_add(struct wpa_supplicant *wpa_s, int persistent_group,
|
|
|
int freq, int ht40, int vht);
|
|
|
int wpas_p2p_group_add_persistent(struct wpa_supplicant *wpa_s,
|
|
@@ -170,6 +169,7 @@ int wpas_p2p_in_progress(struct wpa_supplicant *wpa_s);
|
|
|
int wpas_p2p_wps_eapol_cb(struct wpa_supplicant *wpa_s);
|
|
|
void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
|
|
|
struct wps_event_fail *fail);
|
|
|
+int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s, const char *ifname);
|
|
|
|
|
|
#else /* CONFIG_P2P */
|
|
|
|
|
@@ -293,6 +293,12 @@ static inline void wpas_p2p_wps_failed(struct wpa_supplicant *wpa_s,
|
|
|
{
|
|
|
}
|
|
|
|
|
|
+static inline int wpas_p2p_group_remove(struct wpa_supplicant *wpa_s,
|
|
|
+ const char *ifname)
|
|
|
+{
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
#endif /* CONFIG_P2P */
|
|
|
|
|
|
#endif /* P2P_SUPPLICANT_H */
|