2017-04-12 10:07:28 +02:00
|
|
|
snippet dprintk "Printk current func and debug info ..."
|
2017-05-12 11:28:26 +02:00
|
|
|
printk("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
2017-04-12 10:07:28 +02:00
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet dprint "Printk current func and debug info ..."
|
2017-05-12 11:28:26 +02:00
|
|
|
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
2017-04-12 10:07:28 +02:00
|
|
|
endsnippet
|
|
|
|
|
|
|
|
|
|
snippet dprintf "Printk current func and debug info ..."
|
2017-05-12 11:28:26 +02:00
|
|
|
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
2017-04-12 10:07:28 +02:00
|
|
|
endsnippet
|