Commit 1812062790ab647e85821f21f2263f56eaeffc11

Authored by Dan Streetman
Committed by Linus Torvalds
1 parent 84d517f3e5

lib/plist.c: replace pr_debug with printk in plist_test()

Replace pr_debug() in lib/plist.c test function plist_test() with
printk(KERN_DEBUG ...).

Without DEBUG defined, pr_debug() is complied out, but the entire
plist_test() function is already inside CONFIG_DEBUG_PI_LIST, so printk
should just be used directly.

Signed-off-by: Dan Streetman <ddstreet@ieee.org>
Reviewed-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -223,7 +223,7 @@
223 223 int nr_expect = 0, i, loop;
224 224 unsigned int r = local_clock();
225 225  
226   - pr_debug("start plist test\n");
  226 + printk(KERN_DEBUG "start plist test\n");
227 227 plist_head_init(&test_head);
228 228 for (i = 0; i < ARRAY_SIZE(test_node); i++)
229 229 plist_node_init(test_node + i, 0);
... ... @@ -255,7 +255,7 @@
255 255 plist_test_check(nr_expect);
256 256 }
257 257  
258   - pr_debug("end plist test\n");
  258 + printk(KERN_DEBUG "end plist test\n");
259 259 return 0;
260 260 }
261 261