diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-24 22:48:47 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-02-02 12:24:42 -0500 |
commit | 40599239e7875b39e2a5c12e6545992041c72c52 (patch) | |
tree | 1cb9d7601f914acbf80c467ec7710abc61756258 /lib_blackfin/Makefile | |
parent | 6957a6209b02f6b69607fc47425f13731cc477f1 (diff) | |
download | u-boot-imx-40599239e7875b39e2a5c12e6545992041c72c52.zip u-boot-imx-40599239e7875b39e2a5c12e6545992041c72c52.tar.gz u-boot-imx-40599239e7875b39e2a5c12e6545992041c72c52.tar.bz2 |
Blackfin: cache core/system clock values
Calculating the clocks requires a bit of calls to gcc math functions, so
cache the values after the first run since they'll most likely never
change once U-Boot is up and running.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib_blackfin/Makefile')
-rw-r--r-- | lib_blackfin/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib_blackfin/Makefile b/lib_blackfin/Makefile index 93f7d4f..46ef7f3 100644 --- a/lib_blackfin/Makefile +++ b/lib_blackfin/Makefile @@ -39,6 +39,7 @@ SOBJS-y += memset.o COBJS-y += board.o COBJS-y += boot.o COBJS-y += cache.o +COBJS-y += clocks.o COBJS-y += muldi3.o COBJS-$(CONFIG_POST) += post.o tests.o COBJS-y += string.o |