lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 22 Jul 2015 13:37:07 -0700
From:	tip-bot for Wang Long <tipbot@...or.com>
To:	linux-tip-commits@...r.kernel.org
Cc:	peifeiyue@...wei.com, k.kozlowski@...sung.com,
	linux-arm-kernel@...ts.infradead.org, wanglong@...qinren.net,
	mingo@...nel.org, jason@...edaemon.net, kgene@...nel.org,
	linux-kernel@...r.kernel.org, tglx@...utronix.de,
	long.wanglong@...wei.com, hpa@...or.com
Subject: [tip:irq/core] drivers/irqchip: Replace pr_warning by pr_warn

Commit-ID:  faca10b9e63e880c81388fbbedf7ede6dcd77c70
Gitweb:     http://git.kernel.org/tip/faca10b9e63e880c81388fbbedf7ede6dcd77c70
Author:     Wang Long <long.wanglong@...wei.com>
AuthorDate: Tue, 21 Jul 2015 08:11:01 +0000
Committer:  Thomas Gleixner <tglx@...utronix.de>
CommitDate: Wed, 22 Jul 2015 18:37:42 +0200

drivers/irqchip: Replace pr_warning by pr_warn

Update the last pr_warning callsite in drivers/irqchip.

Signed-off-by: Wang Long <long.wanglong@...wei.com>
Cc: <linux-arm-kernel@...ts.infradead.org>
Cc: <wanglong@...qinren.net>
Cc: <peifeiyue@...wei.com>
Cc: <jason@...edaemon.net>
Cc: <kgene@...nel.org>
Cc: <k.kozlowski@...sung.com>
Link: http://lkml.kernel.org/r/1437466261-147373-1-git-send-email-long.wanglong@huawei.com
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
---
 drivers/irqchip/exynos-combiner.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/irqchip/exynos-combiner.c b/drivers/irqchip/exynos-combiner.c
index 04e0892..e9c6f2a 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,
 
 	combiner_data = kcalloc(max_nr, sizeof (*combiner_data), GFP_KERNEL);
 	if (!combiner_data) {
-		pr_warning("%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_warning("%s: irq domain init failed\n", __func__);
+		pr_warn("%s: irq domain init failed\n", __func__);
 		return;
 	}
 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ