diff options
author | Khoronzhuk, Ivan <ivan.khoronzhuk@ti.com> | 2014-10-22 17:18:21 +0300 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-23 11:27:28 -0400 |
commit | a43febde4452f254621c0c95d452c89ad498e959 (patch) | |
tree | a4469761aba5c77ffedbc73a40ae7af71e20e729 /drivers/soc/Makefile | |
parent | 497e9e03216bae505a8f06808975d0c4865622f2 (diff) | |
download | u-boot-imx-a43febde4452f254621c0c95d452c89ad498e959.zip u-boot-imx-a43febde4452f254621c0c95d452c89ad498e959.tar.gz u-boot-imx-a43febde4452f254621c0c95d452c89ad498e959.tar.bz2 |
soc: keystone_serdes: create a separate SGMII SerDes driver
This patch split the Keystone II SGMII SerDes related code from
Ethernet driver and create a separate SGMII SerDes driver.
The SerDes driver can be used by others keystone subsystems
like PCI, sRIO, so move it to driver/soc/keystone directory.
Add soc specific drivers directory like in the Linux kernel.
It is going to be used by keysotone soc specific drivers.
Signed-off-by: Hao Zhang <hzhang@ti.com>
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
Diffstat (limited to 'drivers/soc/Makefile')
-rw-r--r-- | drivers/soc/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/soc/Makefile b/drivers/soc/Makefile new file mode 100644 index 0000000..3d4baa5 --- /dev/null +++ b/drivers/soc/Makefile @@ -0,0 +1,5 @@ +# +# Makefile for the U-boot SOC specific device drivers. +# + +obj-$(CONFIG_ARCH_KEYSTONE) += keystone/ |