From patchwork Mon Aug 1 07:22:47 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aneesh V X-Patchwork-Id: 107685 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 DE42FB70B1 for ; Mon, 1 Aug 2011 17:27:12 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BDD51281A0; Mon, 1 Aug 2011 09:27:09 +0200 (CEST) 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 MveyMWTm3v1w; Mon, 1 Aug 2011 09:27:09 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 09AD3281A1; Mon, 1 Aug 2011 09:27:08 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8ACAE281A1 for ; Mon, 1 Aug 2011 09:27:05 +0200 (CEST) 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 8t8yechkENxc for ; Mon, 1 Aug 2011 09:27:04 +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 bear.ext.ti.com (bear.ext.ti.com [192.94.94.41]) by theia.denx.de (Postfix) with ESMTPS id 44918281A0 for ; Mon, 1 Aug 2011 09:27:02 +0200 (CEST) Received: from dbdp20.itg.ti.com ([172.24.170.38]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id p717QoYI032510 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 1 Aug 2011 02:26:53 -0500 Received: from dbde70.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id p717QmqU023980; Mon, 1 Aug 2011 12:56:49 +0530 (IST) Received: from dbdp31.itg.ti.com (172.24.170.98) by DBDE70.ent.ti.com (172.24.170.148) with Microsoft SMTP Server id 8.3.106.1; Mon, 1 Aug 2011 12:56:48 +0530 Received: from localhost (a0393566pc.apr.dhcp.ti.com [172.24.137.55]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id p717QkuO025923; Mon, 1 Aug 2011 12:56:47 +0530 (IST) From: Aneesh V To: Date: Mon, 1 Aug 2011 12:52:47 +0530 Message-ID: <1312183367-16528-1-git-send-email-aneesh@ti.com> X-Mailer: git-send-email 1.7.0.4 MIME-Version: 1.0 Cc: albert.u.boot@aribaud.net, santosh.shilimkar@ti.com Subject: [U-Boot] [PATCH] arm: fix build break X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de commit 84b5e8022ef62b68df360392a55c4fc2f2e568d7: "Constify getenv(), setenv() and hash code functions" creates build break for arm. Fix this by removing redundant prototype of setenv() function. Signed-off-by: Aneesh V --- MAKEALL not done yet. Shall do this overnight for all arm boards and update the results. --- arch/arm/include/asm/u-boot-arm.h | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/arch/arm/include/asm/u-boot-arm.h b/arch/arm/include/asm/u-boot-arm.h index 3904027..f8690c6 100644 --- a/arch/arm/include/asm/u-boot-arm.h +++ b/arch/arm/include/asm/u-boot-arm.h @@ -62,9 +62,6 @@ void setup_revision_tag (struct tag **params); /* the U-Boot implementation */ /* To be fixed! */ /* ------------------------------------------------------------ */ -/* common/cmd_nvedit.c */ -int setenv (char *, char *); - /* cpu/.../interrupt.c */ int arch_interrupt_init (void); void reset_timer_masked (void);