From: Baruch Siach Date: Sat, 23 Jun 2012 17:33:50 +0000 (+0300) Subject: atheros: Fix build when WPS and IEEE80211R are both disabled X-Git-Tag: hostap_2_0~618 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2e984ea06393ddc1277d5375e0e2b498147cf05;p=thirdparty%2Fhostap.git atheros: Fix build when WPS and IEEE80211R are both disabled Signed-hostap: Baruch Siach --- diff --git a/src/drivers/driver_atheros.c b/src/drivers/driver_atheros.c index 1f31ed1c3..6690bbbe8 100644 --- a/src/drivers/driver_atheros.c +++ b/src/drivers/driver_atheros.c @@ -877,10 +877,12 @@ static int atheros_receive_pkt(struct atheros_driver_data *drv) return ret; } +#if defined(CONFIG_WPS) || defined(CONFIG_IEEE80211R) drv->sock_raw = l2_packet_init(drv->iface, NULL, ETH_P_80211_RAW, atheros_raw_receive, drv, 1); if (drv->sock_raw == NULL) return -1; +#endif /* CONFIG_WPS || CONFIG_IEEE80211R */ if (l2_packet_get_own_addr(drv->sock_xmit, drv->own_addr)) return -1; return ret;