We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4248f5e commit e83e416Copy full SHA for e83e416
drivers/net/can/vcan.c
@@ -38,6 +38,8 @@
38
*
39
*/
40
41
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
42
+
43
#include <linux/module.h>
44
#include <linux/init.h>
45
#include <linux/netdevice.h>
@@ -166,10 +168,10 @@ static struct rtnl_link_ops vcan_link_ops __read_mostly = {
166
168
167
169
static __init int vcan_init_module(void)
170
{
- pr_info("vcan: Virtual CAN interface driver\n");
171
+ pr_info("Virtual CAN interface driver\n");
172
173
if (echo)
- printk(KERN_INFO "vcan: enabled echo on driver level.\n");
174
+ pr_info("enabled echo on driver level.\n");
175
176
return rtnl_link_register(&vcan_link_ops);
177
}
0 commit comments