Re: [PATCH 09/35] x86: Convert remaining uses of pr_warning to pr_warn

From: Steven Rostedt
Date: Fri Feb 17 2017 - 10:01:23 EST


On Thu, 16 Feb 2017 23:11:22 -0800
Joe Perches <joe@xxxxxxxxxxx> wrote:

> diff --git a/arch/x86/mm/testmmiotrace.c b/arch/x86/mm/testmmiotrace.c
> index 38868adf07ea..4a55e453296d 100644
> --- a/arch/x86/mm/testmmiotrace.c
> +++ b/arch/x86/mm/testmmiotrace.c
> @@ -121,9 +121,8 @@ static int __init init(void)
> return -ENXIO;
> }
>
> - pr_warning("WARNING: mapping %lu kB @ 0x%08lx in PCI address space, "
> - "and writing 16 kB of rubbish in there.\n",
> - size >> 10, mmio_address);
> + pr_warn("WARNING: mapping %lu kB @ 0x%08lx in PCI address space, and writing 16 kB of rubbish in there\n",
> + size >> 10, mmio_address);
> do_test(size);
> do_test_bulk_ioremapping();
> pr_info("All done.\n");

Acked-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx>

-- Steve