diff options
author | Benoît Thébaudeau <benoit.thebaudeau@advansee.com> | 2013-05-03 10:32:19 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-05-05 17:55:03 +0200 |
commit | 52b9d3cfd354a05e4150875faf722a5a25fd4651 (patch) | |
tree | b0f8deda28c16c22b57d44ad5dca6720ab1b2bc5 /spl | |
parent | 9e933b43f3e056e66ba4dfa219711da085e0fc40 (diff) | |
download | u-boot-imx-52b9d3cfd354a05e4150875faf722a5a25fd4651.zip u-boot-imx-52b9d3cfd354a05e4150875faf722a5a25fd4651.tar.gz u-boot-imx-52b9d3cfd354a05e4150875faf722a5a25fd4651.tar.bz2 |
imx: iomux-v3: Add iomux-mx35.h
Allow usage of the imx-common/iomux-v3.h framework by including pad settings for
the i.MX35. The content of the file is taken from Linux kernel at commit
267dd34, plus the required changes to make it work in U-Boot.
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'spl')
-rw-r--r-- | spl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spl/Makefile b/spl/Makefile index e4a0946..8b655c4 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -98,7 +98,7 @@ LIBS-y += arch/$(ARCH)/cpu/tegra-common/libcputegra-common.o LIBS-y += $(CPUDIR)/tegra-common/libtegra-common.o endif -ifneq ($(CONFIG_MX23),) +ifneq ($(CONFIG_MX23)$(CONFIG_MX35),) LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o endif |