projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38351a3
)
kexec: remove unnecessary KERN_ERR from kexec.c
author
Masanari Iida
<
[email protected]
>
Sat, 13 Dec 2014 00:57:41 +0000
(16:57 -0800)
committer
Linus Torvalds
<
[email protected]
>
Sat, 13 Dec 2014 20:42:51 +0000
(12:42 -0800)
Remove unnecessary KERN_ERR from pr_err() within kexec.c.
Signed-off-by: Masanari Iida <
[email protected]
>
Acked-by: Vivek Goyal <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
kernel/kexec.c
patch
|
blob
|
history
diff --git
a/kernel/kexec.c
b/kernel/kexec.c
index 2abf9f6e9a61866302c858e408c8dd7b5ec93dd5..9a8a01abbaed16a235c6e98b12f43996e6900cc2 100644
(file)
--- a/
kernel/kexec.c
+++ b/
kernel/kexec.c
@@
-600,7
+600,7
@@
kimage_file_alloc_init(struct kimage **rimage, int kernel_fd,
if (!kexec_on_panic) {
image->swap_page = kimage_alloc_control_pages(image, 0);
if (!image->swap_page) {
- pr_err(
KERN_ERR
"Could not allocate swap buffer\n");
+ pr_err("Could not allocate swap buffer\n");
goto out_free_control_pages;
}
}