-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moves the QLogic drivers into drivers/net/ethernet/qlogic/ and the necessary Kconfig and Makefile changes. CC: Ron Mercer <ron.mercer@qlogic.com> CC: Amit Kumar Salecha <amit.salecha@qlogic.com> CC: Anirban Chakraborty <anirban.chakraborty@qlogic.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Acked-by: Anirban Chakraborty <anirban.chakraborty@qlogic.com>
- Loading branch information
Jeff Kirsher
committed
Aug 11, 2011
1 parent
dee1ad4
commit aa43c21
Showing
32 changed files
with
67 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# | ||
# QLogic network device configuration | ||
# | ||
|
||
config NET_VENDOR_QLOGIC | ||
bool "QLogic 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 QLogic cards. If you say Y, you will be asked for | ||
your specific card in the following questions. | ||
|
||
if NET_VENDOR_QLOGIC | ||
|
||
config QLA3XXX | ||
tristate "QLogic QLA3XXX Network Driver Support" | ||
depends on PCI | ||
---help--- | ||
This driver supports QLogic ISP3XXX gigabit Ethernet cards. | ||
|
||
To compile this driver as a module, choose M here: the module | ||
will be called qla3xxx. | ||
|
||
config QLCNIC | ||
tristate "QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support" | ||
depends on PCI | ||
select FW_LOADER | ||
---help--- | ||
This driver supports QLogic QLE8240 and QLE8242 Converged Ethernet | ||
devices. | ||
|
||
config QLGE | ||
tristate "QLogic QLGE 10Gb Ethernet Driver Support" | ||
depends on PCI | ||
---help--- | ||
This driver supports QLogic ISP8XXX 10Gb Ethernet cards. | ||
|
||
To compile this driver as a module, choose M here: the module | ||
will be called qlge. | ||
|
||
config NETXEN_NIC | ||
tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC" | ||
depends on PCI | ||
select FW_LOADER | ||
---help--- | ||
This enables the support for NetXen's Gigabit Ethernet card. | ||
|
||
endif # NET_VENDOR_QLOGIC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# | ||
# Makefile for the QLogic network device drivers. | ||
# | ||
|
||
obj-$(CONFIG_QLA3XXX) += qla3xxx.o | ||
obj-$(CONFIG_QLCNIC) += qlcnic/ | ||
obj-$(CONFIG_QLGE) += qlge/ | ||
obj-$(CONFIG_NETXEN_NIC) += netxen/ |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.