Created
January 8, 2014 01:09
-
-
Save steven676/8309890 to your computer and use it in GitHub Desktop.
[PATCH] Don't require CONFIG_CRC7 to build wl1251/wl12xx for SDIO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 6a3250cae7a0258cd176251b85bf99fedfa79e2e Mon Sep 17 00:00:00 2001 | |
From: Steven Luo <[email protected]> | |
Date: Tue, 7 Jan 2014 17:04:11 -0800 | |
Subject: [PATCH] Don't require CONFIG_CRC7 to build wl1251/wl12xx for SDIO | |
CRC7 functions are only used in the SPI code for these drivers, so it's | |
unnecessary for the SDIO drivers to depend on CONFIG_CRC7. See, for | |
example, commit a011130265e9 ("wl12xx: remove unused crc7 references") | |
in Linus's tree. | |
--- | |
mac80211/compat_wl12xx/config.mk | 5 ----- | |
1 file changed, 5 deletions(-) | |
diff --git a/mac80211/compat_wl12xx/config.mk b/mac80211/compat_wl12xx/config.mk | |
index f09d16d..f1aea8b 100644 | |
--- a/mac80211/compat_wl12xx/config.mk | |
+++ b/mac80211/compat_wl12xx/config.mk | |
@@ -582,7 +582,6 @@ ifdef CONFIG_MMC | |
CONFIG_SSB_SDIOHOST=y | |
CONFIG_B43_SDIO=y | |
-ifdef CONFIG_CRC7 | |
ifdef CONFIG_WL12XX_PLATFORM_DATA | |
CONFIG_COMPAT_WL1251_SDIO=m | |
endif #CONFIG_WL12XX_PLATFORM_DATA | |
@@ -593,8 +592,6 @@ CONFIG_COMPAT_WL12XX_SDIO=m | |
endif #CONFIG_WL12XX_PLATFORM_DATA | |
endif #CONFIG_COMPAT_KERNEL_2_6_32 | |
-endif #CONFIG_CRC7 | |
- | |
CONFIG_MWIFIEX_SDIO=m | |
ifndef CONFIG_COMPAT_KERNEL_2_6_32 | |
@@ -655,10 +652,8 @@ CONFIG_ATH_COMMON=m | |
CONFIG_BRCMUTIL=m | |
# CONFIG_BRCMDBG=y | |
-ifdef CONFIG_CRC7 | |
CONFIG_WL1251=m | |
CONFIG_WL12XX=m | |
-endif #CONFIG_CRC7 | |
CONFIG_MWIFIEX=m | |
-- | |
1.7.10.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment