diff options
| author | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-09-04 11:50:25 +0200 |
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-09-04 11:50:25 +0200 |
| commit | 4eef93da262048eb1118e726b3ec5b8ebd3c6c91 (patch) | |
| tree | 8a28287e405742086f6df380ee558265d17cf3f6 /include/linux/compat.h | |
| parent | 31043e20ae748635f142483e8b7b645948687055 (diff) | |
| parent | bc6958988726977b4089da1b13f6467e8e28efd2 (diff) | |
| download | olio-uboot-2014.01-4eef93da262048eb1118e726b3ec5b8ebd3c6c91.tar.xz olio-uboot-2014.01-4eef93da262048eb1118e726b3ec5b8ebd3c6c91.zip | |
Merge branch 'u-boot-atmel/master' into 'u-boot-arm/master'
Diffstat (limited to 'include/linux/compat.h')
| -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 |