You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
318 B
22 lines
318 B
2 years ago
|
#pragma once
|
||
|
|
||
|
//#define usedbg
|
||
|
|
||
|
#ifdef usedbg
|
||
|
|
||
|
# define pr_debug DbgPrint
|
||
|
# define pr_devel DbgPrint
|
||
|
# define pr_err DbgPrint
|
||
|
# define pr_warn DbgPrint
|
||
|
# define printk DbgPrint
|
||
|
|
||
|
#else
|
||
|
|
||
|
# define pr_debug
|
||
|
# define pr_devel
|
||
|
# define pr_err
|
||
|
# define pr_warn
|
||
|
# define printk
|
||
|
|
||
|
#endif // usedbg
|