diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-05-15 23:47:12 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-06-12 20:39:49 +0200 |
commit | 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc (patch) | |
tree | 6080253e837c7f4f79f662a51ab1fe5d13448423 /cpu/arm926ejs/davinci/Makefile | |
parent | daea928829098cae3c9ec6b801e52ba616725034 (diff) | |
download | u-boot-imx-7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc.zip u-boot-imx-7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc.tar.gz u-boot-imx-7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc.tar.bz2 |
davinci: display correct clock info
Move the clock-rate dumping code into the cpu/.../davinci area
where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
updating the format and showing the DSP clock (where relevant).
Switch boards to use the cpuinfo() hook for this stuff.
Remove a few now-obsolete PLL #defines.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'cpu/arm926ejs/davinci/Makefile')
-rw-r--r-- | cpu/arm926ejs/davinci/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/arm926ejs/davinci/Makefile b/cpu/arm926ejs/davinci/Makefile index 480f19f..6eaa89c 100644 --- a/cpu/arm926ejs/davinci/Makefile +++ b/cpu/arm926ejs/davinci/Makefile @@ -27,7 +27,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(SOC).a -COBJS-y += timer.o psc.o +COBJS-y += cpu.o timer.o psc.o COBJS-$(CONFIG_SOC_DM355) += dm355.o COBJS-$(CONFIG_SOC_DM644X) += dm644x.o COBJS-$(CONFIG_DRIVER_TI_EMAC) += ether.o lxt972.o dp83848.o |