diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-12-12 19:57:41 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-12-13 15:42:51 -0500 |
commit | d5393955c33e09c72695acabfcecf00ef6d289b0 (patch) | |
tree | 3cde54549be6b02064cd60d8dc783d82a30c0aba /kernel | |
parent | 38351a329d9c778608491f27955838233ca7337c (diff) |
kexec: remove unnecessary KERN_ERR from kexec.c
Remove unnecessary KERN_ERR from pr_err() within kexec.c.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/kexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/kexec.c b/kernel/kexec.c index 2abf9f6e9a61..9a8a01abbaed 100644 --- a/kernel/kexec.c +++ b/kernel/kexec.c | |||
@@ -600,7 +600,7 @@ kimage_file_alloc_init(struct kimage **rimage, int kernel_fd, | |||
600 | if (!kexec_on_panic) { | 600 | if (!kexec_on_panic) { |
601 | image->swap_page = kimage_alloc_control_pages(image, 0); | 601 | image->swap_page = kimage_alloc_control_pages(image, 0); |
602 | if (!image->swap_page) { | 602 | if (!image->swap_page) { |
603 | pr_err(KERN_ERR "Could not allocate swap buffer\n"); | 603 | pr_err("Could not allocate swap buffer\n"); |
604 | goto out_free_control_pages; | 604 | goto out_free_control_pages; |
605 | } | 605 | } |
606 | } | 606 | } |