diff options
author | Srinivasan Raju <srini.raju@purelifi.com> | 2022-02-24 21:20:07 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@kernel.org> | 2022-04-25 15:30:42 +0300 |
commit | 68d57a07bfe5bb29b80cd8b8fa24c9d1ea104124 (patch) | |
tree | 3ea356728b9e97cefc9fa97ac5c3820ae4351680 /drivers/net/wireless/purelifi/Kconfig | |
parent | 2fb822f82a59db899ba7b3a615cb0ddbc8c04f0f (diff) | |
download | linux-68d57a07bfe5bb29b80cd8b8fa24c9d1ea104124.tar.xz |
wireless: add plfxlc driver for pureLiFi X, XL, XC devices
This is a driver for pureLiFi X, XL, XC devices which use light to transmit
data, so they are not compatible with normal Wi-Fi devices. The driver uses
separate NL80211_BAND_LC band to distinguish from Wi-Fi. The driver is based
on 802.11 softMAC Architecture and uses native 802.11 for configuration and
management. Station and Ad-Hoc modes are supported.
The driver is compiled and tested in ARM, x86 architectures and compiled in
powerpc architecture. This driver implementation has been based on the zd1211rw
driver.
Signed-off-by: Srinivasan Raju <srini.raju@purelifi.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20220224182042.132466-3-srini.raju@purelifi.com
Diffstat (limited to 'drivers/net/wireless/purelifi/Kconfig')
-rw-r--r-- | drivers/net/wireless/purelifi/Kconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/net/wireless/purelifi/Kconfig b/drivers/net/wireless/purelifi/Kconfig new file mode 100644 index 000000000000..e39afec3dcae --- /dev/null +++ b/drivers/net/wireless/purelifi/Kconfig @@ -0,0 +1,17 @@ +# SPDX-License-Identifier: GPL-2.0-only +config WLAN_VENDOR_PURELIFI + bool "pureLiFi devices" + default y + help + If you have a pureLiFi device, say Y. + + Note that the answer to this question doesn't directly affect the + kernel: saying N will just cause the configurator to skip all the + questions about these cards. If you say Y, you will be asked for + your specific card in the following questions. + +if WLAN_VENDOR_PURELIFI + +source "drivers/net/wireless/purelifi/plfxlc/Kconfig" + +endif # WLAN_VENDOR_PURELIFI |