-
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.
net: dsa: mv88e6xxx: move driver in its own folder
With the upcoming support for cross-chip operations and other mv88e6xxx enhancements, new files will be added. Similarly to mlxsw or b53, move mv88e6xxx files into their own folder. In the meantime, update the MAINTAINERS entry to please checkpatch.pl, by replacing the invalid 88E6352 entry with 88E6XXX, maintained by Andrew and myself. Signed-off-by: Vivien Didelot <[email protected]> Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
7 changed files
with
21 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7171,18 +7171,19 @@ W: http://www.kernel.org/doc/man-pages | |
L: [email protected] | ||
S: Maintained | ||
|
||
MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER | ||
M: Andrew Lunn <[email protected]> | ||
M: Vivien Didelot <[email protected]> | ||
S: Maintained | ||
F: drivers/net/dsa/mv88e6xxx/ | ||
|
||
MARVELL ARMADA DRM SUPPORT | ||
M: Russell King <[email protected]> | ||
S: Maintained | ||
F: drivers/gpu/drm/armada/ | ||
F: include/uapi/drm/armada_drm.h | ||
F: Documentation/devicetree/bindings/display/armada/ | ||
|
||
MARVELL 88E6352 DSA support | ||
M: Guenter Roeck <[email protected]> | ||
S: Maintained | ||
F: drivers/net/dsa/mv88e6352.c | ||
|
||
MARVELL CRYPTO DRIVER | ||
M: Boris Brezillon <[email protected]> | ||
M: Arnaud Ebalard <[email protected]> | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
obj-$(CONFIG_NET_DSA_MV88E6060) += mv88e6060.o | ||
obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx.o | ||
obj-$(CONFIG_NET_DSA_BCM_SF2) += bcm_sf2.o | ||
|
||
obj-y += b53/ | ||
obj-y += mv88e6xxx/ |
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 @@ | ||
config NET_DSA_MV88E6XXX | ||
tristate "Marvell 88E6xxx Ethernet switch fabric support" | ||
depends on NET_DSA | ||
select NET_DSA_TAG_EDSA | ||
help | ||
This driver adds support for most of the Marvell 88E6xxx models of | ||
Ethernet switch chips, except 88E6060. |
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 @@ | ||
obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx.o |
3 changes: 2 additions & 1 deletion
3
drivers/net/dsa/mv88e6xxx.c → drivers/net/dsa/mv88e6xxx/mv88e6xxx.c
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
3 changes: 2 additions & 1 deletion
3
drivers/net/dsa/mv88e6xxx.h → drivers/net/dsa/mv88e6xxx/mv88e6xxx.h
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