Commit 367a1092 authored by Kalle Valo's avatar Kalle Valo
Browse files

ipw2x00: move under intel vendor directory



Part of reorganising wireless drivers directory and Kconfig.

Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 560424e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5607,7 +5607,7 @@ L: linux-wireless@vger.kernel.org
S:	Maintained
F:	Documentation/networking/README.ipw2100
F:	Documentation/networking/README.ipw2200
F:	drivers/net/wireless/ipw2x00/
F:	drivers/net/wireless/intel/ipw2x00/

INTEL(R) TRACE HUB
M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
+1 −1
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ source "drivers/net/wireless/admtek/Kconfig"
source "drivers/net/wireless/atmel/Kconfig"
source "drivers/net/wireless/broadcom/Kconfig"
source "drivers/net/wireless/cisco/Kconfig"
source "drivers/net/wireless/intel/Kconfig"
source "drivers/net/wireless/st/Kconfig"

config PCMCIA_RAYCS
@@ -161,7 +162,6 @@ config MWL8K

source "drivers/net/wireless/ath/Kconfig"
source "drivers/net/wireless/hostap/Kconfig"
source "drivers/net/wireless/ipw2x00/Kconfig"
source "drivers/net/wireless/iwlwifi/Kconfig"
source "drivers/net/wireless/iwlegacy/Kconfig"
source "drivers/net/wireless/libertas/Kconfig"
+1 −3
Original line number Diff line number Diff line
@@ -6,11 +6,9 @@ obj-$(CONFIG_WLAN_VENDOR_ADMTEK) += admtek/
obj-$(CONFIG_WLAN_VENDOR_ATMEL) += atmel/
obj-$(CONFIG_WLAN_VENDOR_BROADCOM) += broadcom/
obj-$(CONFIG_WLAN_VENDOR_CISCO) += cisco/
obj-$(CONFIG_WLAN_VENDOR_INTEL) += intel/
obj-$(CONFIG_WLAN_VENDOR_ST) += st/

obj-$(CONFIG_IPW2100) += ipw2x00/
obj-$(CONFIG_IPW2200) += ipw2x00/

obj-$(CONFIG_HERMES)		+= orinoco/

obj-$(CONFIG_PRISM54)		+= prism54/
+16 −0
Original line number Diff line number Diff line
config WLAN_VENDOR_INTEL
	bool "Intel devices"
	default y
	---help---
	  If you have a wireless card belonging to this class, 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  cards. If you say Y, you will be asked for
	  your specific card in the following questions.

if WLAN_VENDOR_INTEL

source "drivers/net/wireless/intel/ipw2x00/Kconfig"

endif # WLAN_VENDOR_INTEL
+2 −0
Original line number Diff line number Diff line
obj-$(CONFIG_IPW2100) += ipw2x00/
obj-$(CONFIG_IPW2200) += ipw2x00/
Loading