From: Stefano Babic Date: Wed, 10 Sep 2014 11:02:40 +0000 (+0200) Subject: imx: Fix build of mx6sxsabresd X-Git-Tag: v2014.10-rc3~79^2^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3d8f1798bafa41a280305fda0af322ffb719d259;p=u-boot imx: Fix build of mx6sxsabresd Commit 224beb833e544b802f08765271cec07667d39669 add clock enabling function for FEC, but the masks are not available for SX processor and the mx6sxsabresd cannot be built clean. Signed-off-by: Stefano Babic CC: Fabio Estevam CC: Nikita Kiryanov --- diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c index 52136f7a22..336e557a27 100644 --- a/arch/arm/cpu/armv7/mx6/clock.c +++ b/arch/arm/cpu/armv7/mx6/clock.c @@ -78,7 +78,7 @@ void enable_usboh3_clk(unsigned char enable) } -#ifdef CONFIG_FEC_MXC +#if defined(CONFIG_FEC_MXC) && !defined(CONFIG_MX6SX) void enable_enet_clk(unsigned char enable) { u32 mask = MXC_CCM_CCGR1_ENET_CLK_ENABLE_MASK;