bna: Move the Brocade driver
Moves the Brocade driver into drivers/net/ethernet/brocade/ and make the necessary Kconfig and Makefile changes. CC: Rasesh Mody <rmody@brocade.com> CC: Debashis Dutt <ddutt@brocade.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
@@ -1576,7 +1576,7 @@ M: Rasesh Mody <rmody@brocade.com>
|
|||||||
M: Debashis Dutt <ddutt@brocade.com>
|
M: Debashis Dutt <ddutt@brocade.com>
|
||||||
L: netdev@vger.kernel.org
|
L: netdev@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
F: drivers/net/bna/
|
F: drivers/net/ethernet/brocade/bna/
|
||||||
|
|
||||||
BSG (block layer generic sg v4 driver)
|
BSG (block layer generic sg v4 driver)
|
||||||
M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
|
M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
|
||||||
|
@@ -1584,20 +1584,6 @@ config TEHUTI
|
|||||||
help
|
help
|
||||||
Tehuti Networks 10G Ethernet NIC
|
Tehuti Networks 10G Ethernet NIC
|
||||||
|
|
||||||
config BNA
|
|
||||||
tristate "Brocade 1010/1020 10Gb Ethernet Driver support"
|
|
||||||
depends on PCI
|
|
||||||
---help---
|
|
||||||
This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet
|
|
||||||
cards.
|
|
||||||
To compile this driver as a module, choose M here: the module
|
|
||||||
will be called bna.
|
|
||||||
|
|
||||||
For general information and support, go to the Brocade support
|
|
||||||
website at:
|
|
||||||
|
|
||||||
<http://support.brocade.com>
|
|
||||||
|
|
||||||
endif # NETDEV_10000
|
endif # NETDEV_10000
|
||||||
|
|
||||||
source "drivers/net/tokenring/Kconfig"
|
source "drivers/net/tokenring/Kconfig"
|
||||||
|
@@ -25,7 +25,6 @@ obj-$(CONFIG_TEHUTI) += tehuti.o
|
|||||||
obj-$(CONFIG_ENIC) += enic/
|
obj-$(CONFIG_ENIC) += enic/
|
||||||
obj-$(CONFIG_JME) += jme.o
|
obj-$(CONFIG_JME) += jme.o
|
||||||
obj-$(CONFIG_VMXNET3) += vmxnet3/
|
obj-$(CONFIG_VMXNET3) += vmxnet3/
|
||||||
obj-$(CONFIG_BNA) += bna/
|
|
||||||
|
|
||||||
gianfar_driver-objs := gianfar.o \
|
gianfar_driver-objs := gianfar.o \
|
||||||
gianfar_ethtool.o \
|
gianfar_ethtool.o \
|
||||||
|
@@ -15,6 +15,7 @@ source "drivers/net/ethernet/3com/Kconfig"
|
|||||||
source "drivers/net/ethernet/8390/Kconfig"
|
source "drivers/net/ethernet/8390/Kconfig"
|
||||||
source "drivers/net/ethernet/amd/Kconfig"
|
source "drivers/net/ethernet/amd/Kconfig"
|
||||||
source "drivers/net/ethernet/broadcom/Kconfig"
|
source "drivers/net/ethernet/broadcom/Kconfig"
|
||||||
|
source "drivers/net/ethernet/brocade/Kconfig"
|
||||||
source "drivers/net/ethernet/chelsio/Kconfig"
|
source "drivers/net/ethernet/chelsio/Kconfig"
|
||||||
source "drivers/net/ethernet/emulex/Kconfig"
|
source "drivers/net/ethernet/emulex/Kconfig"
|
||||||
source "drivers/net/ethernet/intel/Kconfig"
|
source "drivers/net/ethernet/intel/Kconfig"
|
||||||
|
@@ -6,6 +6,7 @@ obj-$(CONFIG_NET_VENDOR_3COM) += 3com/
|
|||||||
obj-$(CONFIG_NET_VENDOR_8390) += 8390/
|
obj-$(CONFIG_NET_VENDOR_8390) += 8390/
|
||||||
obj-$(CONFIG_NET_VENDOR_AMD) += amd/
|
obj-$(CONFIG_NET_VENDOR_AMD) += amd/
|
||||||
obj-$(CONFIG_NET_VENDOR_BROADCOM) += broadcom/
|
obj-$(CONFIG_NET_VENDOR_BROADCOM) += broadcom/
|
||||||
|
obj-$(CONFIG_NET_VENDOR_BROCADE) += brocade/
|
||||||
obj-$(CONFIG_NET_VENDOR_CHELSIO) += chelsio/
|
obj-$(CONFIG_NET_VENDOR_CHELSIO) += chelsio/
|
||||||
obj-$(CONFIG_NET_VENDOR_EMULEX) += emulex/
|
obj-$(CONFIG_NET_VENDOR_EMULEX) += emulex/
|
||||||
obj-$(CONFIG_NET_VENDOR_INTEL) += intel/
|
obj-$(CONFIG_NET_VENDOR_INTEL) += intel/
|
||||||
|
22
drivers/net/ethernet/brocade/Kconfig
Normal file
22
drivers/net/ethernet/brocade/Kconfig
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
#
|
||||||
|
# Brocade device configuration
|
||||||
|
#
|
||||||
|
|
||||||
|
config NET_VENDOR_BROCADE
|
||||||
|
bool "Brocade devices"
|
||||||
|
depends on PCI
|
||||||
|
---help---
|
||||||
|
If you have a network (Ethernet) card belonging to this class, say Y
|
||||||
|
and read the Ethernet-HOWTO, available from
|
||||||
|
<http://www.tldp.org/docs.html#howto>.
|
||||||
|
|
||||||
|
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 Brocade cards. If you say Y, you will be asked for
|
||||||
|
your specific card in the following questions.
|
||||||
|
|
||||||
|
if NET_VENDOR_BROCADE
|
||||||
|
|
||||||
|
source "drivers/net/ethernet/brocade/bna/Kconfig"
|
||||||
|
|
||||||
|
endif # NET_VENDOR_BROCADE
|
5
drivers/net/ethernet/brocade/Makefile
Normal file
5
drivers/net/ethernet/brocade/Makefile
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#
|
||||||
|
# Makefile for the Brocade device drivers.
|
||||||
|
#
|
||||||
|
|
||||||
|
obj-$(CONFIG_BNA) += bna/
|
17
drivers/net/ethernet/brocade/bna/Kconfig
Normal file
17
drivers/net/ethernet/brocade/bna/Kconfig
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
#
|
||||||
|
# Brocade network device configuration
|
||||||
|
#
|
||||||
|
|
||||||
|
config BNA
|
||||||
|
tristate "Brocade 1010/1020 10Gb Ethernet Driver support"
|
||||||
|
depends on PCI
|
||||||
|
---help---
|
||||||
|
This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet
|
||||||
|
cards.
|
||||||
|
To compile this driver as a module, choose M here: the module
|
||||||
|
will be called bna.
|
||||||
|
|
||||||
|
For general information and support, go to the Brocade support
|
||||||
|
website at:
|
||||||
|
|
||||||
|
<http://support.brocade.com>
|
Reference in New Issue
Block a user