summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2013-04-09 21:06:08 +0000
committerJason Liu <r64343@freescale.com>2013-05-21 13:28:14 +0800
commit3062ce11351209a8c8e859ef19d78a03e1266820 (patch)
tree7d5b111d552e31bc0ffbc2eaddff5e4dc5c41d8b /Makefile
parent4a0f4ff1658b8b96c82c1b8884b6544a06fb91cd (diff)
downloadu-boot-imx-3062ce11351209a8c8e859ef19d78a03e1266820.zip
u-boot-imx-3062ce11351209a8c8e859ef19d78a03e1266820.tar.gz
u-boot-imx-3062ce11351209a8c8e859ef19d78a03e1266820.tar.bz2
ENGR00263305-11 imx: Move some i.MX common functions into the imx-common directory
This patch moves the following functions into the imx-common directory: - mxs_wait_mask_set() - mxs_wait_mask_clr() - mxs_reset_block() These are currently used by i.MX28. But the upcoming GPMI NAND port for i.MX6 will also use these functions. So lets move them to a common location to re-use them. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Stefano Babic <sbabic@denx.de> Cc: Marek Vasut <marex@denx.de> Cc: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3fd6d15..e6e365f 100644
--- a/Makefile
+++ b/Makefile
@@ -331,7 +331,7 @@ ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX)$(C
LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
endif
-ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35))
+ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs))
LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o
endif