diff options
author | Marek Vasut <marex@denx.de> | 2015-07-25 11:09:11 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-08-08 14:14:07 +0200 |
commit | 2d779b39b4e11c4db7a2796af76051e70a556c5f (patch) | |
tree | 3109aa74539f3a8303886bf876e919ef86eecd2f /board/altera/socfpga/Makefile | |
parent | 40687b4f468c357d3821454099020949a10d759e (diff) | |
download | u-boot-imx-2d779b39b4e11c4db7a2796af76051e70a556c5f.zip u-boot-imx-2d779b39b4e11c4db7a2796af76051e70a556c5f.tar.gz u-boot-imx-2d779b39b4e11c4db7a2796af76051e70a556c5f.tar.bz2 |
arm: socfpga: system: Clean up pinmux_config.c
Implement new accessor, sysmgr_get_pinmux_table(), used to obtain pinmux
table and it's size from the QTS-generated pinmux_config.c. The target
here is again to get rid of poluting global namespace by including the
pinmux_config.h into it.
Furthermore, the pinmux_config.h declares some CONFIG_HPS_* macros,
which are explicitly useless to us in U-Boot. Instead, U-Boot does
use DT to detect exactly these configuration options. This patch
makes sure that while this QTS-generated file can stay in the tree,
these obscure macros do not ooze into the namespace anymore.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'board/altera/socfpga/Makefile')
-rw-r--r-- | board/altera/socfpga/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/altera/socfpga/Makefile b/board/altera/socfpga/Makefile index 7cd4ef9..640f629 100644 --- a/board/altera/socfpga/Makefile +++ b/board/altera/socfpga/Makefile @@ -7,4 +7,4 @@ # obj-y := socfpga.o wrap_pll_config.o -obj-$(CONFIG_SPL_BUILD) += qts/ wrap_iocsr_config.o +obj-$(CONFIG_SPL_BUILD) += wrap_iocsr_config.o wrap_pinmux_config.o |