Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

sh/intc: 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 <prefix>_warn style. Let's do it.

Link: http://lkml.kernel.org/r/20191018031850.48498-22-wangkefeng.wang@huawei.com
To: linux-kernel@vger.kernel.org
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: Rich Felker <dalias@libc.org>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>

authored by

Kefeng Wang and committed by
Petr Mladek
947dd3cc a2cc701b

+2 -2
+2 -2
drivers/sh/intc/core.c
··· 100 100 primary = 1; 101 101 102 102 if (!data[0] && !data[1]) 103 - pr_warning("missing unique irq mask for irq %d (vect 0x%04x)\n", 104 - irq, irq2evt(irq)); 103 + pr_warn("missing unique irq mask for irq %d (vect 0x%04x)\n", 104 + irq, irq2evt(irq)); 105 105 106 106 data[0] = data[0] ? data[0] : intc_get_mask_handle(desc, d, enum_id, 1); 107 107 data[1] = data[1] ? data[1] : intc_get_prio_handle(desc, d, enum_id, 1);