From patchwork Fri Apr 13 22:20:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 152406 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 38DFCB7011 for ; Sat, 14 Apr 2012 08:20:47 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 73CB128086; Sat, 14 Apr 2012 00:20:40 +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 Af-4HMWuWjSi; Sat, 14 Apr 2012 00:20:40 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BC5B62809E; Sat, 14 Apr 2012 00:20:20 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4075828086 for ; Sat, 14 Apr 2012 00:20:11 +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 we30V-eD38Ib for ; Sat, 14 Apr 2012 00:20:11 +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 B7FC22807F for ; Sat, 14 Apr 2012 00:20:10 +0200 (CEST) Received: by obbtb4 with SMTP id tb4so4761801obb.3 for ; Fri, 13 Apr 2012 15:20:09 -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=T2d7JpfP1CfMjc5DRrWMOmKqobQeWUiEGh8Gg/hHAJk=; b=XzlYi9T9WtNAMeIqtx9edE6Ptwix1cNg17xCLc2SQIq4NL4gSyhZBp9ZqU/5K86ODE mD67Xhk+kPFKLXDAsHSTVFHEY1TECFP7VSZeD6shLl9VM22ODGmb96htJOFRcIUJkx4F HAaPFFXKe+DrnBeVMg1xAG0VNwqBJrmIse9/H2WqwzyO7PtZD84MMZWjlYQ5Bj1RBnr3 KSPsgxyGuBer9emT1xiHgT1qjHy0fo3K/FEB+gTjZb4VJpj1C5KqYxvcCtJKI0KtEiqn tI+GRZM0LaaTz+WtzZzh3LjJqrkMrho1kqlytXU2EDfPss1aJmT/mL4So3HQeWFZwK8D X0vA== Received: by 10.60.36.100 with SMTP id p4mr4465397oej.42.1334355609481; Fri, 13 Apr 2012 15:20:09 -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.08 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 13 Apr 2012 15:20:08 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Fri, 13 Apr 2012 15:20:01 -0700 Message-Id: <1334355606-16491-4-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 03/08] omap5912osk: 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/omap5912osk/omap5912osk.c | 7 ------- include/configs/omap5912osk.h | 2 -- 2 files changed, 0 insertions(+), 9 deletions(-) diff --git a/board/ti/omap5912osk/omap5912osk.c b/board/ti/omap5912osk/omap5912osk.c index 6f0e763..fac683a 100644 --- a/board/ti/omap5912osk/omap5912osk.c +++ b/board/ti/omap5912osk/omap5912osk.c @@ -81,13 +81,6 @@ int board_init (void) return 0; } - -int misc_init_r (void) -{ - /* currently empty */ - return (0); -} - /****************************** Routine: Description: diff --git a/include/configs/omap5912osk.h b/include/configs/omap5912osk.h index a8dfef3..d3a2438 100644 --- a/include/configs/omap5912osk.h +++ b/include/configs/omap5912osk.h @@ -44,8 +44,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 #define CONFIG_INITRD_TAG 1 /* Required for ramdisk support */