-
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.
dsa: Move switch drivers to new directory drivers/net/dsa
Support for specific hardware belongs under drivers/net/ not net/. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Acked-by: Lennert Buytenhek <buytenh@wantstofly.org> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Ben Hutchings
authored and
David S. Miller
committed
Nov 29, 2011
1 parent
c8f0b86
commit 3b15885
Showing
11 changed files
with
49 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
menu "Distributed Switch Architecture drivers" | ||
depends on NET_DSA | ||
|
||
config NET_DSA_MV88E6XXX | ||
tristate | ||
default n | ||
|
||
config NET_DSA_MV88E6060 | ||
tristate "Marvell 88E6060 ethernet switch chip support" | ||
select NET_DSA_TAG_TRAILER | ||
---help--- | ||
This enables support for the Marvell 88E6060 ethernet switch | ||
chip. | ||
|
||
config NET_DSA_MV88E6XXX_NEED_PPU | ||
bool | ||
default n | ||
|
||
config NET_DSA_MV88E6131 | ||
tristate "Marvell 88E6085/6095/6095F/6131 ethernet switch chip support" | ||
select NET_DSA_MV88E6XXX | ||
select NET_DSA_MV88E6XXX_NEED_PPU | ||
select NET_DSA_TAG_DSA | ||
---help--- | ||
This enables support for the Marvell 88E6085/6095/6095F/6131 | ||
ethernet switch chips. | ||
|
||
config NET_DSA_MV88E6123_61_65 | ||
tristate "Marvell 88E6123/6161/6165 ethernet switch chip support" | ||
select NET_DSA_MV88E6XXX | ||
select NET_DSA_TAG_EDSA | ||
---help--- | ||
This enables support for the Marvell 88E6123/6161/6165 | ||
ethernet switch chips. | ||
|
||
endmenu |
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,9 @@ | ||
obj-$(CONFIG_NET_DSA_MV88E6060) += mv88e6060.o | ||
obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx_drv.o | ||
mv88e6xxx_drv-y += mv88e6xxx.o | ||
ifdef CONFIG_NET_DSA_MV88E6123_61_65 | ||
mv88e6xxx_drv-y += mv88e6123_61_65.o | ||
endif | ||
ifdef CONFIG_NET_DSA_MV88E6131 | ||
mv88e6xxx_drv-y += mv88e6131.o | ||
endif |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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