diff options
author | Roger Quadros <rogerq@ti.com> | 2013-11-11 16:56:39 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-12-04 08:12:08 -0500 |
commit | 9c4b64fb612e3129823ba83691e08f4c6d2042ea (patch) | |
tree | 097ef5f761ee868e4ba3c0e50127cdd4cfd0a34e /arch/arm/cpu/armv7/omap-common/Makefile | |
parent | 2faf5fb82ed6f3df07635cddca0a2a54e3ef74ef (diff) | |
download | u-boot-9c4b64fb612e3129823ba83691e08f4c6d2042ea.tar.gz u-boot-9c4b64fb612e3129823ba83691e08f4c6d2042ea.tar.xz u-boot-9c4b64fb612e3129823ba83691e08f4c6d2042ea.zip |
ARM: OMAP5: Add Pipe3 PHY driver
Pipe3 PHY is used by SATA, USB3 and PCIe modules. This is
a driver for the Pipe3 PHY.
Signed-off-by: Roger Quadros <rogerq@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap-common/Makefile')
-rw-r--r-- | arch/arm/cpu/armv7/omap-common/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/omap-common/Makefile b/arch/arm/cpu/armv7/omap-common/Makefile index 4d3a165f59..bfaf814b80 100644 --- a/arch/arm/cpu/armv7/omap-common/Makefile +++ b/arch/arm/cpu/armv7/omap-common/Makefile @@ -17,6 +17,10 @@ obj-y += vc.o obj-y += abb.o endif +ifneq ($(CONFIG_OMAP54XX),) +COBJS += pipe3-phy.o +endif + ifeq ($(CONFIG_OMAP34XX),) obj-y += boot-common.o obj-y += lowlevel_init.o |