diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2012-02-14 16:06:48 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-02-14 16:06:48 -0500 |
commit | e1964c50a83d1ce53731c88271d12ac92292a880 (patch) | |
tree | 2190b7f43196b8172b64275e5e7d7538fe582a44 /kernel | |
parent | 7ab3a837adfc502913e0101d83bd3f4692b690b6 (diff) |
irq_domain: Be less verbose
irq_domain printk's too much. Drop some output.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'kernel')
-rw-r--r-- | 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 1f9e26526b69..cc2cd43ec740 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, | |||
170 | u64 phys_base, unsigned int irq_start) | 170 | u64 phys_base, unsigned int irq_start) |
171 | { | 171 | { |
172 | struct device_node *node; | 172 | struct device_node *node; |
173 | pr_info("looking for phys_base=%llx, irq_start=%i\n", | 173 | pr_debug("looking for phys_base=%llx, irq_start=%i\n", |
174 | (unsigned long long) phys_base, (int) irq_start); | 174 | (unsigned long long) phys_base, (int) irq_start); |
175 | node = of_find_matching_node_by_address(NULL, match, phys_base); | 175 | node = of_find_matching_node_by_address(NULL, match, phys_base); |
176 | if (node) | 176 | if (node) |
177 | irq_domain_add_simple(node, irq_start); | 177 | irq_domain_add_simple(node, irq_start); |
178 | else | ||
179 | pr_info("no node found\n"); | ||
180 | } | 178 | } |
181 | EXPORT_SYMBOL_GPL(irq_domain_generate_simple); | 179 | EXPORT_SYMBOL_GPL(irq_domain_generate_simple); |
182 | #endif /* CONFIG_OF_IRQ */ | 180 | #endif /* CONFIG_OF_IRQ */ |