projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ed3464
)
drivers/irqchip: Replace pr_warning by pr_warn
author
Wang Long
<long.wanglong@huawei.com>
Tue, 21 Jul 2015 08:11:01 +0000
(08:11 +0000)
committer
Thomas Gleixner
<tglx@linutronix.de>
Wed, 22 Jul 2015 16:37:42 +0000
(18:37 +0200)
Update the last pr_warning callsite in drivers/irqchip.
Signed-off-by: Wang Long <long.wanglong@huawei.com>
Cc: <linux-arm-kernel@lists.infradead.org>
Cc: <wanglong@laoqinren.net>
Cc: <peifeiyue@huawei.com>
Cc: <jason@lakedaemon.net>
Cc: <kgene@kernel.org>
Cc: <k.kozlowski@samsung.com>
Link:
http://lkml.kernel.org/r/1437466261-147373-1-git-send-email-long.wanglong@huawei.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
drivers/irqchip/exynos-combiner.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/irqchip/exynos-combiner.c
b/drivers/irqchip/exynos-combiner.c
index 04e0892d2511dbfe9f04387ec29ab6810719749a..e9c6f2a5b52de0958ec334f0a011f3883edf6bf3 100644
(file)
--- a/
drivers/irqchip/exynos-combiner.c
+++ b/
drivers/irqchip/exynos-combiner.c
@@
-185,14
+185,14
@@
static void __init combiner_init(void __iomem *combiner_base,
combiner_data = kcalloc(max_nr, sizeof (*combiner_data), GFP_KERNEL);
if (!combiner_data) {
- pr_warn
ing
("%s: could not allocate combiner data\n", __func__);
+ pr_warn("%s: could not allocate combiner data\n", __func__);
return;
}
combiner_irq_domain = irq_domain_add_linear(np, nr_irq,
&combiner_irq_domain_ops, combiner_data);
if (WARN_ON(!combiner_irq_domain)) {
- pr_warn
ing
("%s: irq domain init failed\n", __func__);
+ pr_warn("%s: irq domain init failed\n", __func__);
return;
}