diff options
author | Kever Yang <kever.yang@rock-chips.com> | 2019-03-29 09:09:00 +0800 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2019-05-01 09:40:58 +0200 |
commit | 7f3eec03d59a0532579ba364e0ba1381feafb814 (patch) | |
tree | ab27d3ffad56282b9f96af68ced5815252494637 /arch/arm/mach-rockchip/rk3036/Makefile | |
parent | 2b2ff1bd87d8912267b9f3b408e2aaad0cd195fa (diff) | |
download | u-boot-7f3eec03d59a0532579ba364e0ba1381feafb814.tar.gz u-boot-7f3eec03d59a0532579ba364e0ba1381feafb814.tar.xz u-boot-7f3eec03d59a0532579ba364e0ba1381feafb814.zip |
rockchip: rk3036: add board_debug_uart_init()
Use board_debug_uart_init() for UART iomux init instead of
do it in board_init_f, and move the function to soc file so
that we can find all the soc/board setting in soc file and
use a common board file.
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
[Fixed whitespace error:]
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'arch/arm/mach-rockchip/rk3036/Makefile')
-rw-r--r-- | arch/arm/mach-rockchip/rk3036/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/rk3036/Makefile b/arch/arm/mach-rockchip/rk3036/Makefile index 20d28f7c21..299fc50635 100644 --- a/arch/arm/mach-rockchip/rk3036/Makefile +++ b/arch/arm/mach-rockchip/rk3036/Makefile @@ -10,4 +10,5 @@ ifndef CONFIG_SPL_BUILD obj-y += syscon_rk3036.o endif +obj-y += rk3036.o obj-y += sdram_rk3036.o |