From: David Spinadel Date: Tue, 25 Jun 2013 10:36:04 +0000 (+0300) Subject: nl80211: Add support for P2P Device in add interface X-Git-Tag: aosp-kk-from-upstream~172 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mech_eap.git;a=commitdiff_plain;h=6bae92e0f2720e4d2960bb57b48690243aec113b nl80211: Add support for P2P Device in add interface Don't try to assign ifindex for P2P Device interface. Signed-off-by: David Spinadel --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index cc03c72..a9a9c4a 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -6613,6 +6613,13 @@ static int nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv, return ret; } + if (iftype == NL80211_IFTYPE_P2P_DEVICE) { + wpa_printf(MSG_DEBUG, + "nl80211: New P2P Device interface %s created", + ifname); + return 0; + } + ifidx = if_nametoindex(ifname); wpa_printf(MSG_DEBUG, "nl80211: New interface %s created: ifindex=%d", ifname, ifidx);