From patchwork Mon May 30 13:44:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Santosh Shilimkar X-Patchwork-Id: 830012 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p4UDiJLr027435 for ; Mon, 30 May 2011 13:44:20 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753116Ab1E3NoT (ORCPT ); Mon, 30 May 2011 09:44:19 -0400 Received: from na3sys009aob106.obsmtp.com ([74.125.149.76]:47328 "EHLO na3sys009aog106.obsmtp.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751745Ab1E3NoS (ORCPT ); Mon, 30 May 2011 09:44:18 -0400 Received: from mail-yw0-f43.google.com ([209.85.213.43]) (using TLSv1) by na3sys009aob106.postini.com ([74.125.148.12]) with SMTP ID DSNKTeOfMYi8mdm4Zv5HXjTFV/RC3FgbS2z1@postini.com; Mon, 30 May 2011 06:44:18 PDT Received: by mail-yw0-f43.google.com with SMTP id 6so1937452ywa.2 for ; Mon, 30 May 2011 06:44:17 -0700 (PDT) Received: by 10.150.9.29 with SMTP id 29mr1373118ybi.148.1306763057734; Mon, 30 May 2011 06:44:17 -0700 (PDT) Received: from [172.24.137.243] (dragon.ti.com [192.94.94.33]) by mx.google.com with ESMTPS id e36sm1843463ybl.18.2011.05.30.06.44.14 (version=SSLv3 cipher=OTHER); Mon, 30 May 2011 06:44:17 -0700 (PDT) Message-ID: <4DE39F2B.3040506@ti.com> Date: Mon, 30 May 2011 19:14:11 +0530 From: Santosh Shilimkar User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.15) Gecko/20110303 Thunderbird/3.1.9 MIME-Version: 1.0 To: Sergei Shtylyov CC: linux-omap@vger.kernel.org, Kevin Hilman , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH] OMAP2/4: PM: Boot message is not an error/info, and not helpful, remove it References: <1306751527-15929-1-git-send-email-santosh.shilimkar@ti.com> <4DE39D40.2060500@ru.mvista.com> In-Reply-To: <4DE39D40.2060500@ru.mvista.com> 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 (demeter1.kernel.org [140.211.167.41]); Mon, 30 May 2011 13:44:24 +0000 (UTC) On 5/30/2011 7:06 PM, Sergei Shtylyov wrote: > Hello. > > Santosh Shilimkar wrote: > >> The commit '99aa18278e' removed the boot messege for OMAP3. Do the same > > Please specify that commit's summary in parens -- for the human readers. > Oh, and you don't need quotes around commit ID too. > Yes I missed that. Updated patch below. Regards Santosh From 53e986a2a43dc204146af99c2d7a906dba781ea0 Mon Sep 17 00:00:00 2001 From: Santosh Shilimkar Date: Mon, 30 May 2011 15:52:01 +0530 Subject: [PATCH] OMAP2/4: PM: Boot message is not an error/info, and not helpful, remove it The commit 99aa18278e (OMAP3: PM: Boot message is not an error, and not helpful, remove it), removed the boot message 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 --- 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");