From patchwork Fri Apr 13 22:20:02 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 152407 X-Patchwork-Delegate: trini@ti.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 F2E64B7015 for ; Sat, 14 Apr 2012 08:20:56 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 791822808B; Sat, 14 Apr 2012 00:20:49 +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 DgLKAxHN3dYY; Sat, 14 Apr 2012 00:20:49 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BB4E828095; Sat, 14 Apr 2012 00:20:25 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 07B532808D for ; Sat, 14 Apr 2012 00:20:15 +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 tJabtX+hECOB for ; Sat, 14 Apr 2012 00:20:13 +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 mail-ob0-f172.google.com (mail-ob0-f172.google.com [209.85.214.172]) by theia.denx.de (Postfix) with ESMTPS id 124CF28081 for ; Sat, 14 Apr 2012 00:20:10 +0200 (CEST) Received: by mail-ob0-f172.google.com with SMTP id tb4so4761691obb.3 for ; Fri, 13 Apr 2012 15:20:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; bh=mqFSUrrQy0D2jPqwV+KcLZLKxBdYNOfGRGjMJ45D8Yw=; b=UprIkjwKTdkovcVJmSW9M6wBQLX9wanTSopmWKatQGRnohU5iSB2+jpvXQL7/Gf/4L bc13U95x3DhuJ0cLdOzZgsE6zJTUmUMy+U5wBb3XcPU60lP1lOw2qHTDTsElWrr1rSVF s49a5SafPXfQGDOOhEOoSQuHcGIG3Yjdgst6OyDjEQrxmuJoSec5xNkUov79IYm1Yt40 PA8eensr5nthWQPtUtb/+cK4thPZ1T/RguD4ZD/s9aTkRKGUeMWg39o50WKPcnjTYWFn Kr/qgzPHMsZzlneEmfKg66qe8BedjGq2IrDUwxMqWexXJ7JzY3kmv+j6jRkTjceh0iM9 pRKA== Received: by 10.60.2.6 with SMTP id 6mr4494927oeq.21.1334355610798; Fri, 13 Apr 2012 15:20:10 -0700 (PDT) Received: from localhost.localdomain (ip68-230-54-74.ph.ph.cox.net. [68.230.54.74]) by mx.google.com with ESMTPS id r8sm9514125oer.6.2012.04.13.15.20.09 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 13 Apr 2012 15:20:10 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Fri, 13 Apr 2012 15:20:02 -0700 Message-Id: <1334355606-16491-5-git-send-email-trini@ti.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1334355606-16491-1-git-send-email-trini@ti.com> References: <1334355606-16491-1-git-send-email-trini@ti.com> Subject: [U-Boot] [PATCH 04/08] omap730p2: Remove empty misc_init_r 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 We had a do-nothing misc_init_r, remove along with CONFIG_MISC_INIT_R Signed-off-by: Tom Rini --- board/ti/omap730p2/omap730p2.c | 6 ------ include/configs/omap730p2.h | 2 -- 2 files changed, 0 insertions(+), 8 deletions(-) diff --git a/board/ti/omap730p2/omap730p2.c b/board/ti/omap730p2/omap730p2.c index 954ced5..36204b2 100644 --- a/board/ti/omap730p2/omap730p2.c +++ b/board/ti/omap730p2/omap730p2.c @@ -129,12 +129,6 @@ int board_init (void) return 0; } -int misc_init_r (void) -{ - /* currently empty */ - return (0); -} - /****************************** Routine: Description: diff --git a/include/configs/omap730p2.h b/include/configs/omap730p2.h index 26e7e1f..f7900e0 100644 --- a/include/configs/omap730p2.h +++ b/include/configs/omap730p2.h @@ -49,8 +49,6 @@ #undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */ -#define CONFIG_MISC_INIT_R - #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */ #define CONFIG_SETUP_MEMORY_TAGS 1