summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/arch-mx25
diff options
context:
space:
mode:
authorBenoît Thébaudeau <benoit.thebaudeau@advansee.com>2012-09-27 10:27:44 +0000
committerTom Rini <trini@ti.com>2012-10-15 11:54:13 -0700
commit17c7cf71b44a4fe23a34de1f9d572623d2ed19f7 (patch)
tree15efc9134e78ee9cf3e179b43c6d1e2ed1a849db /arch/arm/include/asm/arch-mx25
parentc3b518903192fd1ee346211ed8c7e020ea2fc050 (diff)
downloadtalos-obmc-uboot-17c7cf71b44a4fe23a34de1f9d572623d2ed19f7.tar.gz
talos-obmc-uboot-17c7cf71b44a4fe23a34de1f9d572623d2ed19f7.zip
mx25 clocks: Fix MXC_FEC_CLK
mxc_get_clock(MXC_FEC_CLK) should return the IPG clock, not the AHB clock. Also, imx_get_fecclk() was correct but reimplemented the calculation of the IPG clock, so remove the duplicated code. Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com> Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm/include/asm/arch-mx25')
-rw-r--r--arch/arm/include/asm/arch-mx25/clock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-mx25/clock.h b/arch/arm/include/asm/arch-mx25/clock.h
index 9823f46ada..a532da5dbe 100644
--- a/arch/arm/include/asm/arch-mx25/clock.h
+++ b/arch/arm/include/asm/arch-mx25/clock.h
@@ -71,7 +71,7 @@ ulong imx_get_perclk(int clk);
ulong imx_get_ahbclk(void);
#define imx_get_uartclk() imx_get_perclk(15)
-#define imx_get_fecclk() (imx_get_ahbclk()/2)
+#define imx_get_fecclk() mxc_get_clock(MXC_FEC_CLK)
unsigned int mxc_get_clock(enum mxc_clock clk);
OpenPOWER on IntegriCloud