diff options
author | Andy Fleming | 2005-07-31 01:31:23 +0200 |
---|---|---|
committer | Jeff Garzik | 2005-07-31 01:31:23 +0200 |
commit | 00db8189d984d6c51226dafbbe4a667ce9b7d5da (patch) | |
tree | f19468548c938523e3519670f8554e7a1b9c0c31 /drivers/net/phy/Makefile | |
parent | [PATCH] agp: restore APBASE after setting APSIZE (diff) | |
download | kernel-qcow2-linux-00db8189d984d6c51226dafbbe4a667ce9b7d5da.tar.gz kernel-qcow2-linux-00db8189d984d6c51226dafbbe4a667ce9b7d5da.tar.xz kernel-qcow2-linux-00db8189d984d6c51226dafbbe4a667ce9b7d5da.zip |
This patch adds a PHY Abstraction Layer to the Linux Kernel, enabling
ethernet drivers to remain as ignorant as is reasonable of the connected
PHY's design and operation details.
Signed-off-by: Andy Fleming <afleming@freescale.com>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/phy/Makefile')
-rw-r--r-- | drivers/net/phy/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/phy/Makefile b/drivers/net/phy/Makefile new file mode 100644 index 000000000000..1af05de6ced0 --- /dev/null +++ b/drivers/net/phy/Makefile @@ -0,0 +1,9 @@ +# Makefile for Linux PHY drivers + +obj-$(CONFIG_PHYLIB) += phy.o phy_device.o mdio_bus.o + +obj-$(CONFIG_MARVELL_PHY) += marvell.o +obj-$(CONFIG_DAVICOM_PHY) += davicom.o +obj-$(CONFIG_CICADA_PHY) += cicada.o +obj-$(CONFIG_LXT_PHY) += lxt.o +obj-$(CONFIG_QSEMI_PHY) += qsemi.o |