Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7536
b: refs/heads/master
c: 185a7a1
h: refs/heads/master
v: v3
  • Loading branch information
viro@ZenIV.linux.org.uk authored and Linus Torvalds committed Sep 8, 2005
1 parent f43e233 commit ff06ec1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f20badbe1207bb10a8ad5fdadc2131c94344b5d9
refs/heads/master: 185a7a1cd79b9891e3c17abdb103ba1c98d6ca7a
9 changes: 8 additions & 1 deletion trunk/drivers/scsi/NCR5380.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@
*/
#include <scsi/scsi_dbg.h>

#ifndef NDEBUG
#define NDEBUG 0
#endif
#ifndef NDEBUG
#define NDEBUG_ABORT 0
#endif

#if (NDEBUG & NDEBUG_LISTS)
#define LIST(x,y) {printk("LINE:%d Adding %p to %p\n", __LINE__, (void*)(x), (void*)(y)); if ((x)==(y)) udelay(5); }
#define REMOVE(w,x,y,z) {printk("LINE:%d Removing: %p->%p %p->%p \n", __LINE__, (void*)(w), (void*)(x), (void*)(y), (void*)(z)); if ((x)==(y)) udelay(5); }
Expand Down Expand Up @@ -359,7 +366,7 @@ static struct {
{PHASE_UNKNOWN, "UNKNOWN"}
};

#ifdef NDEBUG
#if NDEBUG
static struct {
unsigned char mask;
const char *name;
Expand Down

0 comments on commit ff06ec1

Please sign in to comment.