diff mbox

[U-Boot] rockchip: fix rk3036 Kconfig inclusion

Message ID 1469042563-25046-1-git-send-email-heiko@sntech.de
State Superseded
Delegated to: Simon Glass
Headers show

Commit Message

Heiko Stuebner July 20, 2016, 7:22 p.m. UTC
Commit c7db6abf534d ("ARM64: rockchip: add support for rk3399 SoC based evb")
accidentially removed the include of the rk3036 Kconfig from
arch/arm/mach-rockchip/Kconfig. Readd it to let the rk3036 boards
compile again.

Fixes: c7db6abf534d ("ARM64: rockchip: add support for rk3399 SoC based evb")
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
---
 arch/arm/mach-rockchip/Kconfig | 1 +
 1 file changed, 1 insertion(+)

Comments

Simon Glass July 23, 2016, 2:15 a.m. UTC | #1
On 20 July 2016 at 13:22, Heiko Stuebner <heiko@sntech.de> wrote:
> Commit c7db6abf534d ("ARM64: rockchip: add support for rk3399 SoC based evb")
> accidentially removed the include of the rk3036 Kconfig from
> arch/arm/mach-rockchip/Kconfig. Readd it to let the rk3036 boards
> compile again.
>
> Fixes: c7db6abf534d ("ARM64: rockchip: add support for rk3399 SoC based evb")
> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
> ---
>  arch/arm/mach-rockchip/Kconfig | 1 +
>  1 file changed, 1 insertion(+)

Acked-by: Simon Glass <sjg@chromium.org>

Although I'm going to fix this by applying the v5 series.
diff mbox

Patch

diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig
index acde487..d8723bb 100644
--- a/arch/arm/mach-rockchip/Kconfig
+++ b/arch/arm/mach-rockchip/Kconfig
@@ -40,6 +40,7 @@  config ROCKCHIP_RK3399
 	  USB2 host and OTG, SDIO, I2S, UARTs, SPI, I2C and PWMs.
 	select ARM64
 
+source "arch/arm/mach-rockchip/rk3036/Kconfig"
 source "arch/arm/mach-rockchip/rk3288/Kconfig"
 source "arch/arm/mach-rockchip/rk3399/Kconfig"
 endif