aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/b43/Kconfig')
-rw-r--r--drivers/net/wireless/b43/Kconfig18
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/Kconfig b/drivers/net/wireless/b43/Kconfig
index 8bc4bc4c330e..f51b2d9b085b 100644
--- a/drivers/net/wireless/b43/Kconfig
+++ b/drivers/net/wireless/b43/Kconfig
@@ -62,6 +62,14 @@ config B43_PCMCIA
62 62
63 If unsure, say N. 63 If unsure, say N.
64 64
65# Data transfers to the device via PIO
66# This is only needed on PCMCIA devices. All others can do DMA properly.
67config B43_PIO
68 bool
69 depends on B43 && (B43_PCMCIA || B43_FORCE_PIO)
70 select SSB_BLOCKIO
71 default y
72
65config B43_NPHY 73config B43_NPHY
66 bool "Pre IEEE 802.11n support (BROKEN)" 74 bool "Pre IEEE 802.11n support (BROKEN)"
67 depends on B43 && EXPERIMENTAL && BROKEN 75 depends on B43 && EXPERIMENTAL && BROKEN
@@ -94,3 +102,13 @@ config B43_DEBUG
94 102
95 Say Y, if you want to find out why the driver does not 103 Say Y, if you want to find out why the driver does not
96 work for you. 104 work for you.
105
106config B43_FORCE_PIO
107 bool "Force usage of PIO instead of DMA"
108 depends on B43 && B43_DEBUG
109 ---help---
110 This will disable DMA and always enable PIO instead.
111
112 Say N!
113 This is only for debugging the PIO engine code. You do
114 _NOT_ want to enable this.