From patchwork Wed Jan 16 21:14:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Warren X-Patchwork-Id: 213065 X-Patchwork-Delegate: twarren@nvidia.com 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 2FDD32C0080 for ; Thu, 17 Jan 2013 08:17:27 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8E9014A0F1; Wed, 16 Jan 2013 22:17:23 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 cvtlxNBeSY8j; Wed, 16 Jan 2013 22:17:23 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7444E4A101; Wed, 16 Jan 2013 22:17:02 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 368824A0B5 for ; Wed, 16 Jan 2013 22:16:05 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 0MDK0j1i6Iw7 for ; Wed, 16 Jan 2013 22:16:04 +0100 (CET) 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 mail-pb0-f48.google.com (mail-pb0-f48.google.com [209.85.160.48]) by theia.denx.de (Postfix) with ESMTPS id 557104A088 for ; Wed, 16 Jan 2013 22:15:46 +0100 (CET) Received: by mail-pb0-f48.google.com with SMTP id rq13so948740pbb.35 for ; Wed, 16 Jan 2013 13:15:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:x-nvconfidentiality; bh=mGG3M0gJVYzq+/iVtoAa2m/nerTw0Q9HUdwIQLO10u4=; b=NP7qMlWb9oo4i5sQ1Z2V/CPFX4Py5BFdzhnwaJFz/uc21nKZ36xkozhKULsis/f21/ UZLL9DDTUEOebMUUX7Lbr+/bPPEkGPZEdoXrHj6+eToNXZdNRSrbzOoLRieVsTVs2e1r QIcJ3w0LMZxB5pwieLbNsQnVBHd6zlQCoSxKwqERSEAG0GYB58PJMVNEoQ4ZXLWs6xZL o7j8yXlAPSxqvBP/nPGLDlCDZJtI/rjggtqpEwTZ9ejU/GO1dC5iAQ9GBnacrMWFCm4i 9UcuwFuC+JWTsubM3nyefuB0xFCwuUKd0oOrARTrZTrPhC/+fi6oJJgauLaWmZwX03IU ZhTQ== X-Received: by 10.68.130.195 with SMTP id og3mr6686316pbb.10.1358370945088; Wed, 16 Jan 2013 13:15:45 -0800 (PST) Received: from localhost.localdomain (ip68-230-103-25.ph.ph.cox.net. [68.230.103.25]) by mx.google.com with ESMTPS id oj1sm12906321pbb.19.2013.01.16.13.15.43 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 16 Jan 2013 13:15:44 -0800 (PST) From: Tom Warren To: u-boot@lists.denx.de Date: Wed, 16 Jan 2013 14:14:07 -0700 Message-Id: <1358370848-29469-7-git-send-email-twarren@nvidia.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1358370848-29469-1-git-send-email-twarren@nvidia.com> References: <1358370848-29469-1-git-send-email-twarren@nvidia.com> X-NVConfidentiality: public Cc: swarren@nvidia.com, Tom Warren , twarren.nvidia@gmail.com Subject: [U-Boot] [PATCH 6/7] Tegra114: Add generic Tegra114 build support X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de This patch adds basic Tegra114 (T114) build support - no specific board is targeted. Signed-off-by: Tom Warren --- board/nvidia/common/board.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index a4af539..e986fcf 100644 --- a/board/nvidia/common/board.c +++ b/board/nvidia/common/board.c @@ -196,7 +196,7 @@ void gpio_early_init(void) __attribute__((weak, alias("__gpio_early_init"))); int board_early_init_f(void) { -#if defined(CONFIG_TEGRA30) +#if !defined(CONFIG_TEGRA20) pinmux_init(); #endif board_init_uart_f();