forked from torvalds/linux
-
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.
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/ker…
…nel/git/jgarzik/netdev-2.6
- Loading branch information
Showing
81 changed files
with
8,924 additions
and
3,158 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 |
---|---|---|
|
@@ -1945,6 +1945,14 @@ M: [email protected] | |
L: [email protected] | ||
S: Supported | ||
|
||
POWERPC 4xx EMAC DRIVER | ||
P: Eugene Surovegin | ||
M: [email protected] | ||
W: http://kernel.ebshome.net/emac/ | ||
L: [email protected] | ||
L: [email protected] | ||
S: Maintained | ||
|
||
PNP SUPPORT | ||
P: Adam Belay | ||
M: [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
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
Empty file.
Empty file.
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
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,20 @@ | ||
config FS_ENET | ||
tristate "Freescale Ethernet Driver" | ||
depends on NET_ETHERNET && (CPM1 || CPM2) | ||
select MII | ||
|
||
config FS_ENET_HAS_SCC | ||
bool "Chip has an SCC usable for ethernet" | ||
depends on FS_ENET && (CPM1 || CPM2) | ||
default y | ||
|
||
config FS_ENET_HAS_FCC | ||
bool "Chip has an FCC usable for ethernet" | ||
depends on FS_ENET && CPM2 | ||
default y | ||
|
||
config FS_ENET_HAS_FEC | ||
bool "Chip has an FEC usable for ethernet" | ||
depends on FS_ENET && CPM1 | ||
default y | ||
|
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,10 @@ | ||
# | ||
# Makefile for the Freescale Ethernet controllers | ||
# | ||
|
||
obj-$(CONFIG_FS_ENET) += fs_enet.o | ||
|
||
obj-$(CONFIG_8xx) += mac-fec.o mac-scc.o | ||
obj-$(CONFIG_8260) += mac-fcc.o | ||
|
||
fs_enet-objs := fs_enet-main.o fs_enet-mii.o mii-bitbang.o mii-fixed.o |
Oops, something went wrong.