-
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.
sh_eth: Move the Renesas SuperH driver
Move the Renesas driver into drivers/net/ethernet/renesas/ and make the necessary Kconfig and Makefile changes. CC: Yoshihiro Shimoda <yoshihiro.shirmoda.uh@renesas.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
- Loading branch information
Jeff Kirsher
committed
Aug 13, 2011
1 parent
7191047
commit 37b9375
Showing
8 changed files
with
25 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
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,18 @@ | ||
# | ||
# Renesas device configuration | ||
# | ||
|
||
config SH_ETH | ||
tristate "Renesas SuperH Ethernet support" | ||
depends on SUPERH && \ | ||
(CPU_SUBTYPE_SH7710 || CPU_SUBTYPE_SH7712 || \ | ||
CPU_SUBTYPE_SH7763 || CPU_SUBTYPE_SH7619 || \ | ||
CPU_SUBTYPE_SH7724 || CPU_SUBTYPE_SH7757) | ||
select CRC32 | ||
select MII | ||
select MDIO_BITBANG | ||
select PHYLIB | ||
---help--- | ||
Renesas SuperH Ethernet device driver. | ||
This driver supporting CPUs are: | ||
- SH7710, SH7712, SH7763, SH7619, SH7724, and SH7757. |
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,5 @@ | ||
# | ||
# Makefile for the Renesas device drivers. | ||
# | ||
|
||
obj-$(CONFIG_SH_ETH) += sh_eth.o |
File renamed without changes.
File renamed without changes.