12 lines
313 B
Plaintext
12 lines
313 B
Plaintext
|
|
snippet dprintk "Printk current func and debug info ..."
|
||
|
|
printk("%s: ${1}\n", __func__${2});
|
||
|
|
endsnippet
|
||
|
|
|
||
|
|
snippet dprint "Printk current func and debug info ..."
|
||
|
|
printf("%s: ${1}\n", __func__${2});
|
||
|
|
endsnippet
|
||
|
|
|
||
|
|
snippet dprintf "Printk current func and debug info ..."
|
||
|
|
printf("%s: ${1}\n", __func__${2});
|
||
|
|
endsnippet
|