From patchwork Wed Jul 20 19:22:43 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Heiko Stuebner X-Patchwork-Id: 650867 X-Patchwork-Delegate: sjg@chromium.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3rvmys5ndkz9svs for ; Thu, 21 Jul 2016 05:23:01 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B287EA751C; Wed, 20 Jul 2016 21:22:58 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5RlX58WGXaNF; Wed, 20 Jul 2016 21:22:58 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 46CA7A750A; Wed, 20 Jul 2016 21:22:58 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6E2EBA750A for ; Wed, 20 Jul 2016 21:22:55 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id X5FKDk0Kh2X3 for ; Wed, 20 Jul 2016 21:22:55 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from gloria.sntech.de (gloria.sntech.de [95.129.55.99]) by theia.denx.de (Postfix) with ESMTPS id 34946A74FF for ; Wed, 20 Jul 2016 21:22:52 +0200 (CEST) Received: from ip9234aa3a.dynamic.kabel-deutschland.de ([146.52.170.58] helo=diego.sntech) by gloria.sntech.de with esmtpsa (TLS1.1:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1bPx4y-0005YI-3K; Wed, 20 Jul 2016 21:22:48 +0200 From: Heiko Stuebner To: sjg@chromium.org Date: Wed, 20 Jul 2016 21:22:43 +0200 Message-Id: <1469042563-25046-1-git-send-email-heiko@sntech.de> X-Mailer: git-send-email 2.8.0.rc3 Cc: u-boot@lists.denx.de, hl@rock-chips.com Subject: [U-Boot] [PATCH] rockchip: fix rk3036 Kconfig inclusion X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" 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 Acked-by: Simon Glass --- arch/arm/mach-rockchip/Kconfig | 1 + 1 file changed, 1 insertion(+) 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