Skip to content

Commit

Permalink
lib/atomic64_test.c: convert printk(KERN_INFO to pr_info
Browse files Browse the repository at this point in the history
Convert printk to current pr_foo() logging functions.

Also add pr_fmt based on KBUILD_MODNAME to avoid repeating prefix.  Prefix
is now "atomic64_test: "

Signed-off-by: Fabian Frederick <[email protected]>
Cc: Luca Barbieri <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Fabian Frederick authored and torvalds committed Jun 4, 2014
1 parent c56ba70 commit b3b16d2
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions lib/atomic64_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include <linux/init.h>
#include <linux/bug.h>
#include <linux/kernel.h>
Expand Down Expand Up @@ -146,18 +149,18 @@ static __init int test_atomic64(void)
BUG_ON(v.counter != r);

#ifdef CONFIG_X86
printk(KERN_INFO "atomic64 test passed for %s platform %s CX8 and %s SSE\n",
pr_info("passed for %s platform %s CX8 and %s SSE\n",
#ifdef CONFIG_X86_64
"x86-64",
"x86-64",
#elif defined(CONFIG_X86_CMPXCHG64)
"i586+",
"i586+",
#else
"i386+",
"i386+",
#endif
boot_cpu_has(X86_FEATURE_CX8) ? "with" : "without",
boot_cpu_has(X86_FEATURE_XMM) ? "with" : "without");
#else
printk(KERN_INFO "atomic64 test passed\n");
pr_info("passed\n");
#endif

return 0;
Expand Down

0 comments on commit b3b16d2

Please sign in to comment.