aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-06-27 17:34:42 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-06-27 17:34:42 -0400
commitd4620396d7e9759dd3f37a8155827477cf2b5309 (patch)
tree394e8ba0caad84d1425e6b383ed2d48dbe7b70a9
parent15e5201dfd4eebfce5e50b068ed40cb5f574fee6 (diff)
Staging: brcm80211: disable drivers except for X86 or MIPS platforms
As David points out, the driver is also broken on SPARC, so might as well just only enable it on platforms where people have reported it working, instead of trying to list all of the ones where it doesn't work, as the working platform list is much smaller... Reported-by: David Miller <davem@davemloft.net> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Henry Ptasinski <henryp@broadcom.com> Cc: Brett Rudley <brudley@broadcom.com> Cc: Roland Vossen <rvossen@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/staging/brcm80211/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/brcm80211/Kconfig b/drivers/staging/brcm80211/Kconfig
index 2d1a29bdc0ee..379cf16e89f7 100644
--- a/drivers/staging/brcm80211/Kconfig
+++ b/drivers/staging/brcm80211/Kconfig
@@ -7,7 +7,7 @@ config BRCMSMAC
7 default n 7 default n
8 depends on PCI 8 depends on PCI
9 depends on WLAN && MAC80211 9 depends on WLAN && MAC80211
10 depends on !PPC64 && !PPC32 10 depends on X86 || MIPS
11 select BRCMUTIL 11 select BRCMUTIL
12 select FW_LOADER 12 select FW_LOADER
13 select CRC_CCITT 13 select CRC_CCITT
@@ -21,7 +21,7 @@ config BRCMFMAC
21 default n 21 default n
22 depends on MMC 22 depends on MMC
23 depends on WLAN && CFG80211 23 depends on WLAN && CFG80211
24 depends on !PPC64 && !PPC32 24 depends on X86 || MIPS
25 select BRCMUTIL 25 select BRCMUTIL
26 select FW_LOADER 26 select FW_LOADER
27 select WIRELESS_EXT 27 select WIRELESS_EXT