From: Kefeng Wang Date: Fri, 18 Oct 2019 03:18:44 +0000 (+0800) Subject: lib: cpu_rmap: Use pr_warn instead of pr_warning X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=256339d602337f5fa4b5e11b81641a5fe96e585d;p=linux.git lib: cpu_rmap: Use pr_warn instead of pr_warning As said in commit f2c2cbcc35d4 ("powerpc: Use pr_warn instead of pr_warning"), removing pr_warning so all logging messages use a consistent _warn style. Let's do it. Link: http://lkml.kernel.org/r/20191018031850.48498-27-wangkefeng.wang@huawei.com To: linux-kernel@vger.kernel.org Cc: Andrew Morton Signed-off-by: Kefeng Wang Reviewed-by: Sergey Senozhatsky Signed-off-by: Petr Mladek --- diff --git a/lib/cpu_rmap.c b/lib/cpu_rmap.c index 075f3788bbe4d..f08d9c56f712e 100644 --- a/lib/cpu_rmap.c +++ b/lib/cpu_rmap.c @@ -255,7 +255,7 @@ irq_cpu_rmap_notify(struct irq_affinity_notify *notify, const cpumask_t *mask) rc = cpu_rmap_update(glue->rmap, glue->index, mask); if (rc) - pr_warning("irq_cpu_rmap_notify: update failed: %d\n", rc); + pr_warn("irq_cpu_rmap_notify: update failed: %d\n", rc); } /**