diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-11-11 14:36:08 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-17 14:11:33 -0500 |
commit | a52f90f074a84880f8cb13e060e9ca5f3c7d9c2f (patch) | |
tree | 5e2ede5ac2933be7ae9ae7b18ea0c149452d87c7 | |
parent | 0a3656a42e1ffb574568459f7b1ec27ed354f258 (diff) | |
download | u-boot-imx-a52f90f074a84880f8cb13e060e9ca5f3c7d9c2f.zip u-boot-imx-a52f90f074a84880f8cb13e060e9ca5f3c7d9c2f.tar.gz u-boot-imx-a52f90f074a84880f8cb13e060e9ca5f3c7d9c2f.tar.bz2 |
arm: rmobile: Do not create a symbolic link to sh timer
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
-rw-r--r-- | arch/arm/cpu/armv7/rmobile/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/arm/cpu/armv7/rmobile/Makefile b/arch/arm/cpu/armv7/rmobile/Makefile index 8f4cf3a..5e296c4 100644 --- a/arch/arm/cpu/armv7/rmobile/Makefile +++ b/arch/arm/cpu/armv7/rmobile/Makefile @@ -15,10 +15,4 @@ obj-$(CONFIG_R8A7740) += cpu_info-r8a7740.o obj-$(CONFIG_R8A7740) += pfc-r8a7740.o obj-$(CONFIG_SH73A0) += cpu_info-sh73a0.o obj-$(CONFIG_SH73A0) += pfc-sh73a0.o -obj-$(CONFIG_TMU_TIMER) += sh_timer.o - -SRCS += $(obj)sh_timer.c -# from arch/sh/lib/ directory -$(obj)sh_timer.c: - @rm -f $(obj)sh_timer.c - ln -s $(SRCTREE)/arch/sh/lib/time.c $(obj)sh_timer.c +obj-$(CONFIG_TMU_TIMER) += ../../../../sh/lib/time.o |