diff options
author | loos <loos@FreeBSD.org> | 2014-01-23 12:02:04 +0000 |
---|---|---|
committer | loos <loos@FreeBSD.org> | 2014-01-23 12:02:04 +0000 |
commit | f516feec90c64635dd3f7e4c6ec41123eaa41651 (patch) | |
tree | 2c3cd358d9922f19e6cd150405e08a14d578f7ac /sys/boot | |
parent | 31820682b51229f8d751da6265f356ae29aa4f35 (diff) | |
download | FreeBSD-src-f516feec90c64635dd3f7e4c6ec41123eaa41651.zip FreeBSD-src-f516feec90c64635dd3f7e4c6ec41123eaa41651.tar.gz |
MFC r257127:
Remove all the instances of '#undef DEBUG' from kernel.
Suggested by: rpaulo
Approved by: adrian (mentor)
Diffstat (limited to 'sys/boot')
-rw-r--r-- | sys/boot/uboot/lib/disk.c | 3 | ||||
-rw-r--r-- | sys/boot/uboot/lib/glue.c | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/sys/boot/uboot/lib/disk.c b/sys/boot/uboot/lib/disk.c index e861bc0..62b3132 100644 --- a/sys/boot/uboot/lib/disk.c +++ b/sys/boot/uboot/lib/disk.c @@ -45,9 +45,6 @@ __FBSDID("$FreeBSD$"); #include "glue.h" #include "libuboot.h" -#define DEBUG -#undef DEBUG - #define stor_printf(fmt, args...) do { \ printf("%s%d: ", dev->d_dev->dv_name, dev->d_unit); \ printf(fmt, ##args); \ diff --git a/sys/boot/uboot/lib/glue.c b/sys/boot/uboot/lib/glue.c index df12a7d..f389f11 100644 --- a/sys/boot/uboot/lib/glue.c +++ b/sys/boot/uboot/lib/glue.c @@ -34,9 +34,6 @@ __FBSDID("$FreeBSD$"); #include "api_public.h" #include "glue.h" -#define DEBUG -#undef DEBUG - #ifdef DEBUG #define debugf(fmt, args...) do { printf("%s(): ", __func__); printf(fmt,##args); } while (0) #else |