summaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2014-03-19 11:05:47 +1100
committerStephen Rothwell <sfr@canb.auug.org.au>2014-03-19 11:05:47 +1100
commite4a17e0e862b2d08f5976def6f39b9de63400c04 (patch)
tree79629a906fbfb23d1b18d7dd46d617d10cd889ae /init
parent51b7a7a9802f82650c07e433bbe8bdbac47476bd (diff)
initramfs-debug-detected-compression-method-fix
use pr_debug() Cc: Daniel M. Weeks <dan@danweeks.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'init')
-rw-r--r--init/initramfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/initramfs.c b/init/initramfs.c
index 25d88b190ff3..a8497fab1c3d 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -455,7 +455,7 @@ static char * __init unpack_to_rootfs(char *buf, unsigned len)
}
this_header = 0;
decompress = decompress_method(buf, len, &compress_name);
- printk(KERN_DEBUG "Detected %s compressed data\n", compress_name);
+ pr_debug("Detected %s compressed data\n", compress_name);
if (decompress) {
res = decompress(buf, len, NULL, flush_buffer, NULL,
&my_inptr, error);