From patchwork Wed Mar 11 07:16:29 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Axel Lin X-Patchwork-Id: 448833 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 C9931140083 for ; Wed, 11 Mar 2015 18:16:46 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 77280A741F; Wed, 11 Mar 2015 08:16:43 +0100 (CET) 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 Nl7YWJpXgjiM; Wed, 11 Mar 2015 08:16:43 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DF01BA741B; Wed, 11 Mar 2015 08:16:42 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 99F634A039 for ; Wed, 11 Mar 2015 08:16:40 +0100 (CET) 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 c9BGEh6koVS4 for ; Wed, 11 Mar 2015 08:16:40 +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-pd0-f180.google.com (mail-pd0-f180.google.com [209.85.192.180]) by theia.denx.de (Postfix) with ESMTPS id 169184A036 for ; Wed, 11 Mar 2015 08:16:37 +0100 (CET) Received: by pdjp10 with SMTP id p10so8912601pdj.10 for ; Wed, 11 Mar 2015 00:16:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:subject:from:to:cc:date:content-type :mime-version:content-transfer-encoding; bh=A2q1epn7Uy12dUkDevV36DaVVoGDIkTSeZ41OckXOUI=; b=FwXNE+FEYuMwdvv2T+k+3oC5enm5t4+Ai5jSZ/GMjDHGnC+CUynM506hhF+muqz5Xs DyjKz/y21d9c4Rib6uZPEGF2zpTEmlZ+o7rZHFT1qy13wV5k/eowNjXGeb4qLgibk4RU KJOdvnkYhpUwdyD4wal2ElQf9mX4P8bjq3jCAVoCntQKsioGAGjm7LIZx4xoHxnD3Cgl Nwr14SdGdsKEjVyWV4UU5QWhyPzwaxgECVFJtpKTlvk/cuu2r53S1iPc3LMmyeIkZi6F ZkY69u0jzGcXNYvRxx3lZyN5on/7OcOKscafoKYsmAgWNdqPFQMsiYMAoSMjjFo08vSM qbUA== X-Gm-Message-State: ALoCoQnP+ioGls1p5JhlIk+1RxwVVREZb+wsY/I3+SyKloce80EPiA+WXyYhP1nth+T/52P3nVjM X-Received: by 10.66.62.137 with SMTP id y9mr75262030par.87.1426058195199; Wed, 11 Mar 2015 00:16:35 -0700 (PDT) Received: from [192.168.0.104] (36-239-207-225.dynamic-ip.hinet.net. [36.239.207.225]) by mx.google.com with ESMTPSA id ly7sm4473326pdb.1.2015.03.11.00.16.32 (version=TLSv1.2 cipher=AES128-GCM-SHA256 bits=128/128); Wed, 11 Mar 2015 00:16:34 -0700 (PDT) Message-ID: <1426058189.28646.1.camel@phoenix> From: Axel Lin To: U-Boot Mailing List Date: Wed, 11 Mar 2015 15:16:29 +0800 X-Mailer: Evolution 3.10.4-0ubuntu2 Mime-Version: 1.0 Cc: Stephen Warren , Tom Warren Subject: [U-Boot] [PATCH RESEND] tegra: Remove tegra_spl_gpio_direction_output declaration from header file 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: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This function is deleted by commit 2fccd2d96bad "tegra: Convert tegra GPIO driver to use driver model". Signed-off-by: Axel Lin Acked-by: Simon Glass --- I forgot adding Tom Warren in CC in my previous mail. So here is a resend. arch/arm/include/asm/arch-tegra/gpio.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/arch/arm/include/asm/arch-tegra/gpio.h b/arch/arm/include/asm/arch-tegra/gpio.h index 7334e0c..daf5698 100644 --- a/arch/arm/include/asm/arch-tegra/gpio.h +++ b/arch/arm/include/asm/arch-tegra/gpio.h @@ -28,15 +28,6 @@ struct tegra_gpio_config { }; /** - * tegra_spl_gpio_direction_output() - set the output value of a GPIO - * - * This function is only used from SPL on seaboard, which needs to enable a - * GPIO to get the UART running. It could be done in U-Boot rather than SPL, - * but for now, this gets it working - */ -int tegra_spl_gpio_direction_output(int gpio, int value); - -/** * Configure a list of GPIOs * * @param config List of GPIO configurations