From patchwork Mon Jan 23 21:07:38 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Grant Likely X-Patchwork-Id: 137474 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from ozlabs.org (localhost [IPv6:::1]) by ozlabs.org (Postfix) with ESMTP id C7D661011CE for ; Tue, 24 Jan 2012 08:10:24 +1100 (EST) Received: from mail-yx0-f179.google.com (mail-yx0-f179.google.com [209.85.213.179]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (not verified)) by ozlabs.org (Postfix) with ESMTPS id A0B181007D5; Tue, 24 Jan 2012 08:08:07 +1100 (EST) Received: by yenl11 with SMTP id l11so1465889yen.38 for ; Mon, 23 Jan 2012 13:08:04 -0800 (PST) MIME-Version: 1.0 Received: by 10.236.138.193 with SMTP id a41mr14279115yhj.32.1327352884514; Mon, 23 Jan 2012 13:08:04 -0800 (PST) Received: from localhost (S0106d8b37715ee14.cg.shawcable.net. [68.146.14.168]) by mx.google.com with ESMTPS id 9sm38127856ans.15.2012.01.23.13.08.02 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 23 Jan 2012 13:08:03 -0800 (PST) Received: by localhost (Postfix, from userid 1000) id 7D2083E063B; Mon, 23 Jan 2012 14:08:00 -0700 (MST) From: Grant Likely To: linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, devicetree-discuss@lists.ozlabs.org, Milton Miller , benh@kernel.crashing.org, Rob Herring Subject: [RFCv2 02/14] dt: Make irqdomain less verbose Date: Mon, 23 Jan 2012 14:07:38 -0700 Message-Id: <1327352870-14687-3-git-send-email-grant.likely@secretlab.ca> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1327352870-14687-1-git-send-email-grant.likely@secretlab.ca> References: <1327352870-14687-1-git-send-email-grant.likely@secretlab.ca> X-Gm-Message-State: ALoCoQmsPJgKHmcg71nsRyYzTeMIOucEefql0faVh4HIKlVMGyD85l7iuE9q2NAxDrlslOdpkZA4 Cc: Thomas Gleixner X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org It printk's too much. Drop some output. Signed-off-by: Grant Likely Cc: Thomas Gleixner --- kernel/irq/irqdomain.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c index 1f9e265..cc2cd43 100644 --- a/kernel/irq/irqdomain.c +++ b/kernel/irq/irqdomain.c @@ -170,13 +170,11 @@ void irq_domain_generate_simple(const struct of_device_id *match, u64 phys_base, unsigned int irq_start) { struct device_node *node; - pr_info("looking for phys_base=%llx, irq_start=%i\n", + pr_debug("looking for phys_base=%llx, irq_start=%i\n", (unsigned long long) phys_base, (int) irq_start); node = of_find_matching_node_by_address(NULL, match, phys_base); if (node) irq_domain_add_simple(node, irq_start); - else - pr_info("no node found\n"); } EXPORT_SYMBOL_GPL(irq_domain_generate_simple); #endif /* CONFIG_OF_IRQ */