diff options
author | Wang Long <long.wanglong@huawei.com> | 2015-07-21 04:11:01 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-07-22 12:37:42 -0400 |
commit | faca10b9e63e880c81388fbbedf7ede6dcd77c70 (patch) | |
tree | db114d10c2a9f0d5eb694dd47f7dc1aa4bad7e4f /drivers/irqchip/exynos-combiner.c | |
parent | 6ed3464897cc825a75218653c710d673282dfcf8 (diff) |
drivers/irqchip: Replace pr_warning by pr_warn
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>
Diffstat (limited to 'drivers/irqchip/exynos-combiner.c')
-rw-r--r-- | drivers/irqchip/exynos-combiner.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/irqchip/exynos-combiner.c b/drivers/irqchip/exynos-combiner.c index 04e0892d2511..e9c6f2a5b52d 100644 --- 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, | |||
185 | 185 | ||
186 | combiner_data = kcalloc(max_nr, sizeof (*combiner_data), GFP_KERNEL); | 186 | combiner_data = kcalloc(max_nr, sizeof (*combiner_data), GFP_KERNEL); |
187 | if (!combiner_data) { | 187 | if (!combiner_data) { |
188 | pr_warning("%s: could not allocate combiner data\n", __func__); | 188 | pr_warn("%s: could not allocate combiner data\n", __func__); |
189 | return; | 189 | return; |
190 | } | 190 | } |
191 | 191 | ||
192 | combiner_irq_domain = irq_domain_add_linear(np, nr_irq, | 192 | combiner_irq_domain = irq_domain_add_linear(np, nr_irq, |
193 | &combiner_irq_domain_ops, combiner_data); | 193 | &combiner_irq_domain_ops, combiner_data); |
194 | if (WARN_ON(!combiner_irq_domain)) { | 194 | if (WARN_ON(!combiner_irq_domain)) { |
195 | pr_warning("%s: irq domain init failed\n", __func__); | 195 | pr_warn("%s: irq domain init failed\n", __func__); |
196 | return; | 196 | return; |
197 | } | 197 | } |
198 | 198 | ||