diff options
author | Giuseppe Cavallaro <peppe.cavallaro@st.com> | 2008-11-28 19:14:12 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-28 19:14:12 -0500 |
commit | 914804b95caa61c633431262044034ab05c78ba4 (patch) | |
tree | eb2ee070d8ecf6efc2ea6cdb3bdac34fecb43ae7 | |
parent | 65a467f553067fae21b66ac0778247c930936749 (diff) |
phy: add natsemi PHY driver
This patch adds the PHY device driver for the National Semiconductor
DP83865 Gig PHYTER.
Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/phy/Kconfig | 5 | ||||
-rw-r--r-- | drivers/net/phy/Makefile | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig index c4c5a2f8ec74..a1938e18cb62 100644 --- a/drivers/net/phy/Kconfig +++ b/drivers/net/phy/Kconfig | |||
@@ -66,6 +66,11 @@ config REALTEK_PHY | |||
66 | ---help--- | 66 | ---help--- |
67 | Supports the Realtek 821x PHY. | 67 | Supports the Realtek 821x PHY. |
68 | 68 | ||
69 | config NATIONAL_PHY | ||
70 | tristate "Drivers for National Semiconductor PHYs" | ||
71 | ---help--- | ||
72 | Currently supports the DP83865 PHY. | ||
73 | |||
69 | config FIXED_PHY | 74 | config FIXED_PHY |
70 | bool "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs" | 75 | bool "Driver for MDIO Bus/PHY emulation with fixed speed/link PHYs" |
71 | depends on PHYLIB=y | 76 | depends on PHYLIB=y |
diff --git a/drivers/net/phy/Makefile b/drivers/net/phy/Makefile index 9ae5d30b5f4e..eba495453aef 100644 --- a/drivers/net/phy/Makefile +++ b/drivers/net/phy/Makefile | |||
@@ -16,3 +16,4 @@ obj-$(CONFIG_REALTEK_PHY) += realtek.o | |||
16 | obj-$(CONFIG_FIXED_PHY) += fixed.o | 16 | obj-$(CONFIG_FIXED_PHY) += fixed.o |
17 | obj-$(CONFIG_MDIO_BITBANG) += mdio-bitbang.o | 17 | obj-$(CONFIG_MDIO_BITBANG) += mdio-bitbang.o |
18 | obj-$(CONFIG_MDIO_GPIO) += mdio-gpio.o | 18 | obj-$(CONFIG_MDIO_GPIO) += mdio-gpio.o |
19 | obj-$(CONFIG_NATIONAL_PHY) += national.o | ||