-
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.
pch_gbe: Move the OKI Semiconductor driver
Move the OKI Semiconductor driver into driver/net/ethernet/oki-semi/ and make the necessary Kconfig and Makefile changes. Note: there is no documented maintainer for this driver, so I CC'd the last 2 major contributors. CC: Tomoya <tomoya-linux@dsn.okisemi.com> CC: Toshiharu Okada <toshiharu-linux@dsn.okisemi.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
- Loading branch information
Jeff Kirsher
committed
Aug 12, 2011
1 parent
9e13fbf
commit 1c1538b
Showing
16 changed files
with
49 additions
and
20 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,22 @@ | ||
# | ||
# OKI Semiconductor device configuration | ||
# | ||
|
||
config NET_VENDOR_OKI | ||
bool "OKI Semiconductor devices" | ||
depends on PCI | ||
---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 OKI Semiconductor cards. If you say Y, you will | ||
be asked for your specific card in the following questions. | ||
|
||
if NET_VENDOR_OKI | ||
|
||
source "drivers/net/ethernet/oki-semi/pch_gbe/Kconfig" | ||
|
||
endif # NET_VENDOR_OKI |
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 OKI Semiconductor device drivers. | ||
# | ||
|
||
obj-$(CONFIG_PCH_GBE) += pch_gbe/ |
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 @@ | ||
# | ||
# OKI Semiconductor device configuration | ||
# | ||
|
||
config PCH_GBE | ||
tristate "OKI SEMICONDUCTOR ML7223 IOH GbE (Intel EG20T PCH)" | ||
depends on PCI | ||
select MII | ||
---help--- | ||
This is a gigabit ethernet driver for EG20T PCH. | ||
EG20T PCH is the platform controller hub that is used in Intel's | ||
general embedded platform. EG20T PCH has Gigabit Ethernet interface. | ||
Using this interface, it is able to access system devices connected | ||
to Gigabit Ethernet. This driver enables Gigabit Ethernet function. | ||
|
||
This driver also can be used for OKI SEMICONDUCTOR IOH(Input/ | ||
Output Hub), ML7223. | ||
ML7223 IOH is for MP(Media Phone) use. | ||
ML7223 is companion chip for Intel Atom E6xx series. | ||
ML7223 is completely compatible for Intel EG20T PCH. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.