diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/compat.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/linux/compat.h b/include/linux/compat.h index e1338bf48..3fdfb399b 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h @@ -3,6 +3,14 @@  #define ndelay(x)	udelay(1) +#define dev_dbg(dev, fmt, args...)		\ +	debug(fmt, ##args) +#define dev_vdbg(dev, fmt, args...)		\ +	debug(fmt, ##args) +#define dev_info(dev, fmt, args...)		\ +	printf(fmt, ##args) +#define dev_err(dev, fmt, args...)		\ +	printf(fmt, ##args)  #define printk	printf  #define KERN_EMERG |