From patchwork Thu Jul 9 13:25:13 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Artem Bityutskiy X-Patchwork-Id: 34798 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n69BZSvn024359 for ; Thu, 9 Jul 2009 11:35:28 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756647AbZGILfU (ORCPT ); Thu, 9 Jul 2009 07:35:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758607AbZGILfU (ORCPT ); Thu, 9 Jul 2009 07:35:20 -0400 Received: from smtp.nokia.com ([192.100.122.233]:56229 "EHLO mgw-mx06.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757708AbZGILfT (ORCPT ); Thu, 9 Jul 2009 07:35:19 -0400 Received: from esebh106.NOE.Nokia.com (esebh106.ntc.nokia.com [172.21.138.213]) by mgw-mx06.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id n69BYkw3017089; Thu, 9 Jul 2009 14:35:08 +0300 Received: from esebh102.NOE.Nokia.com ([172.21.138.183]) by esebh106.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 9 Jul 2009 14:34:41 +0300 Received: from mgw-sa02.ext.nokia.com ([147.243.1.48]) by esebh102.NOE.Nokia.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Thu, 9 Jul 2009 14:34:41 +0300 Received: from localhost.localdomain (esdhcp04131.research.nokia.com [172.21.41.31]) by mgw-sa02.ext.nokia.com (Switch-3.2.6/Switch-3.2.6) with ESMTP id n69BYed9012701; Thu, 9 Jul 2009 14:34:40 +0300 From: Artem Bityutskiy To: Kevin Hilman Cc: linux-omap@vger.kernel.org, Artem Bityutskiy Subject: [PATCH] OMAP3: PM: remove a junk print Date: Thu, 9 Jul 2009 16:25:13 +0300 Message-Id: <1247145913-12639-1-git-send-email-Artem.Bityutskiy@nokia.com> X-Mailer: git-send-email 1.6.0.6 X-OriginalArrivalTime: 09 Jul 2009 11:34:41.0412 (UTC) FILETIME=[3FC8BC40:01CA0089] X-Nokia-AV: Clean Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org The pm_dbg_init() print does not look like something useful, probably just a leftover. Kill it. Signed-off-by: Artem Bityutskiy --- [The previous git-send-email attempt crewed up the subject, re-sending] arch/arm/mach-omap2/pm-debug.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index 2768510..33cc6b9 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c @@ -526,8 +526,6 @@ static int __init pm_dbg_init(void) struct dentry *d; char name[2]; - printk(KERN_INFO "pm_dbg_init()\n"); - d = debugfs_create_dir("pm_debug", NULL); if (IS_ERR(d)) return PTR_ERR(d);