Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1726312

[PATCH] arm64: Convert pr_warning to standard pr_warn

From chengjian c00427203 <cj.chengjian@huawei.com>
Newsgroups linux.kernel
Subject [PATCH] arm64: Convert pr_warning to standard pr_warn
Date 2017-09-05 04:30 +0200
Message-ID <umbMJ-5d5-1@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Convert pr_warning to standard pr_warn in arch/arm64/kernel/smp.c

Signed-off-by: Cheng Jian <cj.chengjian@huawei.com>
---
 arch/arm64/kernel/smp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/kernel/smp.c b/arch/arm64/kernel/smp.c
index 9f7195a..efcaa05 100644
--- a/arch/arm64/kernel/smp.c
+++ b/arch/arm64/kernel/smp.c
@@ -972,7 +972,7 @@ void smp_send_stop(void)
 		udelay(1);
 
 	if (num_online_cpus() > 1)
-		pr_warning("SMP: failed to stop secondary CPUs %*pbl\n",
+		pr_warn("SMP: failed to stop secondary CPUs %*pbl\n",
 			   cpumask_pr_args(cpu_online_mask));
 }
 
@@ -1009,7 +1009,7 @@ void crash_smp_send_stop(void)
 		udelay(1);
 
 	if (atomic_read(&waiting_for_crash_ipi) > 0)
-		pr_warning("SMP: failed to stop secondary CPUs %*pbl\n",
+		pr_warn("SMP: failed to stop secondary CPUs %*pbl\n",
 			   cpumask_pr_args(&mask));
 }
 
-- 
1.8.3.1

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] arm64: Convert pr_warning to standard pr_warn chengjian c00427203 <cj.chengjian@huawei.com> - 2017-09-05 04:30 +0200
  Re: [PATCH] arm64: Convert pr_warning to standard pr_warn Mark Rutland <mark.rutland@arm.com> - 2017-09-05 11:20 +0200
    Re: [PATCH] arm64: Convert pr_warning to standard pr_warn "chengjian (D)" <cj.chengjian@huawei.com> - 2017-09-05 11:30 +0200
    Re: [PATCH] arm64: Convert pr_warning to standard pr_warn Joe Perches <joe@perches.com> - 2017-09-05 20:40 +0200
      Re: [PATCH] arm64: Convert pr_warning to standard pr_warn Mark Rutland <mark.rutland@arm.com> - 2017-09-06 11:30 +0200
        Re: [PATCH] arm64: Convert pr_warning to standard pr_warn Catalin Marinas <catalin.marinas@arm.com> - 2017-09-06 16:20 +0200

csiph-web