Merge commit 'c18abfb46561f945131986da1a16a9715532db49'

This commit is contained in:
murgi
2017-05-12 11:28:26 +02:00
3 changed files with 7 additions and 5 deletions

View File

@@ -1,11 +1,11 @@
snippet dprintk "Printk current func and debug info ..."
printk("%s: ${1}\n", __func__${2});
printk("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
endsnippet
snippet dprint "Printk current func and debug info ..."
printf("%s: ${1}\n", __func__${2});
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
endsnippet
snippet dprintf "Printk current func and debug info ..."
printf("%s: ${1}\n", __func__${2});
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
endsnippet