-
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.
xilinx/ll_temac: Move the Xilinx drivers
Move the Xilinx drivers into drivers/net/ethernet/xilinx/ and make the necessary Kconfig and Makefile changes. CC: John Williams <john.williams@petalogix.com> CC: "David H. Lynch Jr." <dhlii@dlasys.net> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
- Loading branch information
Jeff Kirsher
committed
Aug 12, 2011
1 parent
63d24a0
commit b13ad8f
Showing
10 changed files
with
44 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# | ||
# Xilink device configuration | ||
# | ||
|
||
config NET_VENDOR_XILINX | ||
bool "Xilinx devices" | ||
depends on PPC || PPC32 || MICROBLAZE | ||
---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 Xilinx devices. If you say Y, you will be asked | ||
for your specific card in the following questions. | ||
|
||
if NET_VENDOR_XILINX | ||
|
||
config XILINX_EMACLITE | ||
tristate "Xilinx 10/100 Ethernet Lite support" | ||
depends on (PPC32 || MICROBLAZE) | ||
select PHYLIB | ||
---help--- | ||
This driver supports the 10/100 Ethernet Lite from Xilinx. | ||
|
||
config XILINX_LL_TEMAC | ||
tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver" | ||
depends on (PPC || MICROBLAZE) | ||
select PHYLIB | ||
---help--- | ||
This driver supports the Xilinx 10/100/1000 LocalLink TEMAC | ||
core used in Xilinx Spartan and Virtex FPGAs | ||
|
||
endif # NET_VENDOR_XILINX |
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,7 @@ | ||
# | ||
# Makefile for the Xilink network device drivers. | ||
# | ||
|
||
ll_temac-objs := ll_temac_main.o ll_temac_mdio.o | ||
obj-$(CONFIG_XILINX_LL_TEMAC) += ll_temac.o | ||
obj-$(CONFIG_XILINX_EMACLITE) += xilinx_emaclite.o |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.