From patchwork Tue May 29 14:18:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/2] atheros: fix build when CONFIG_WPS is disabled Date: Tue, 29 May 2012 04:18:51 -0000 From: Baruch Siach X-Patchwork-Id: 161755 Message-Id: To: hostap@lists.shmoo.com The use of ETH_P_80211_RAW does not depend on CONFIG_WPS, so make its definition independent as well. Signed-hostap: Baruch Siach --- src/drivers/driver_atheros.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/driver_atheros.c b/src/drivers/driver_atheros.c index 37147ea..db2b3ff 100644 --- a/src/drivers/driver_atheros.c +++ b/src/drivers/driver_atheros.c @@ -39,11 +39,11 @@ #ifdef CONFIG_WPS #include +#endif /* CONFIG_WPS */ #ifndef ETH_P_80211_RAW #define ETH_P_80211_RAW 0x0019 #endif -#endif /* CONFIG_WPS */ #include "linux_wext.h"