From patchwork Mon May 30 10:32:07 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Santosh Shilimkar X-Patchwork-Id: 829672 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p4UAWJIg013172 for ; Mon, 30 May 2011 10:32:19 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753137Ab1E3KcS (ORCPT ); Mon, 30 May 2011 06:32:18 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:48259 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752237Ab1E3KcR (ORCPT ); Mon, 30 May 2011 06:32:17 -0400 Received: from dbdp20.itg.ti.com ([172.24.170.38]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id p4UAWBQQ009159 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 30 May 2011 05:32:13 -0500 Received: from dbde71.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id p4UAWAr9015365; Mon, 30 May 2011 16:02:10 +0530 (IST) Received: from dbdp31.itg.ti.com (172.24.170.98) by DBDE71.ent.ti.com (172.24.170.149) with Microsoft SMTP Server id 8.3.106.1; Mon, 30 May 2011 16:02:10 +0530 Received: from linfarm476.india.ti.com (dbdp20.itg.ti.com [172.24.170.38]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id p4UAW8MD025784; Mon, 30 May 2011 16:02:09 +0530 (IST) Received: from linfarm476.india.ti.com (localhost [127.0.0.1]) by linfarm476.india.ti.com (8.12.11/8.12.11) with ESMTP id p4UAW8jq015954; Mon, 30 May 2011 16:02:08 +0530 Received: (from a0393909@localhost) by linfarm476.india.ti.com (8.12.11/8.12.11/Submit) id p4UAW7qv015952; Mon, 30 May 2011 16:02:07 +0530 From: Santosh Shilimkar To: CC: , Santosh Shilimkar , Kevin Hilman Subject: [PATCH] OMAP2/4: PM: Boot message is not an error/info, and not helpful, remove it Date: Mon, 30 May 2011 16:02:07 +0530 Message-ID: <1306751527-15929-1-git-send-email-santosh.shilimkar@ti.com> X-Mailer: git-send-email 1.5.6.6 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 30 May 2011 10:32:19 +0000 (UTC) The commit '99aa18278e' removed the boot messege for OMAP3. Do the same for OMAP2 and OMAP4 since it's really just noise in the boot log and PM init is always called. Signed-off-by: Santosh Shilimkar Cc: Kevin Hilman --- Generated against mainline v3.0-rc1. arch/arm/mach-omap2/pm24xx.c | 1 - arch/arm/mach-omap2/pm44xx.c | 2 -- 2 files changed, 0 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-omap2/pm24xx.c b/arch/arm/mach-omap2/pm24xx.c index df3ded6..5970759 100644 --- a/arch/arm/mach-omap2/pm24xx.c +++ b/arch/arm/mach-omap2/pm24xx.c @@ -442,7 +442,6 @@ static int __init omap2_pm_init(void) if (!cpu_is_omap24xx()) return -ENODEV; - printk(KERN_INFO "Power Management for OMAP2 initializing\n"); l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET); printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f); diff --git a/arch/arm/mach-omap2/pm44xx.c b/arch/arm/mach-omap2/pm44xx.c index 59a870b..a6259d6 100644 --- a/arch/arm/mach-omap2/pm44xx.c +++ b/arch/arm/mach-omap2/pm44xx.c @@ -103,8 +103,6 @@ static int __init omap4_pm_init(void) if (!cpu_is_omap44xx()) return -ENODEV; - pr_err("Power Management for TI OMAP4.\n"); - ret = pwrdm_for_each(pwrdms_setup, NULL); if (ret) { pr_err("Failed to setup powerdomains\n");