diff options
author | Joe Perches <joe@perches.com> | 2010-01-26 06:40:00 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-27 00:15:56 -0500 |
commit | 99824461ea72ca0044cc6508f02c0e1cabf37ba5 (patch) | |
tree | 8672e525869778c9d4c12fe3982306387995bf2a /net/atm/mpc.c | |
parent | b747caf365b4121903b26d1cd65454c7bc607184 (diff) |
net/atm: Convert printk to pr_<level>
Add #define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
Remove function names from output
Use single line pr_debug instead of broken multiple uses without newline
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/atm/mpc.c')
-rw-r--r-- | net/atm/mpc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/atm/mpc.c b/net/atm/mpc.c index 38a6cb0863f0..3c45aef47b7e 100644 --- a/net/atm/mpc.c +++ b/net/atm/mpc.c | |||
@@ -1,3 +1,5 @@ | |||
1 | #define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__ | ||
2 | |||
1 | #include <linux/kernel.h> | 3 | #include <linux/kernel.h> |
2 | #include <linux/string.h> | 4 | #include <linux/string.h> |
3 | #include <linux/timer.h> | 5 | #include <linux/timer.h> |
@@ -1447,7 +1449,7 @@ static __init int atm_mpoa_init(void) | |||
1447 | register_atm_ioctl(&atm_ioctl_ops); | 1449 | register_atm_ioctl(&atm_ioctl_ops); |
1448 | 1450 | ||
1449 | if (mpc_proc_init() != 0) | 1451 | if (mpc_proc_init() != 0) |
1450 | printk(KERN_INFO "mpoa: failed to initialize /proc/mpoa\n"); | 1452 | pr_info("failed to initialize /proc/mpoa\n"); |
1451 | 1453 | ||
1452 | printk("mpc.c: " __DATE__ " " __TIME__ " initialized\n"); | 1454 | printk("mpc.c: " __DATE__ " " __TIME__ " initialized\n"); |
1453 | 1455 | ||