diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2005-10-02 17:15:29 -0700 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-10-16 11:50:21 -0500 |
commit | f566a576bca09de85bf477fc0ab2c8c96405b77b (patch) | |
tree | ed4ae0c7a3592841367d486e867e43c82a83a5da /drivers/scsi/NCR5380.c | |
parent | 7a3ca7d2b5ec31b2cfa594b961d77e68075e33c7 (diff) | |
download | op-kernel-dev-f566a576bca09de85bf477fc0ab2c8c96405b77b.zip op-kernel-dev-f566a576bca09de85bf477fc0ab2c8c96405b77b.tar.gz |
[SCSI] NCR5380: fix undefined preprocessor identifier
Fix 12 undefined preprocessor identifier warnings (4 each in 3 driver builds):
drivers/scsi/NCR5380.c:2744:16: warning: undefined preprocessor identifier 'NDEBUG_ABORT'
drivers/scsi/NCR5380.c:2744:16: warning: "NDEBUG_ABORT" is not defined
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/NCR5380.c')
-rw-r--r-- | drivers/scsi/NCR5380.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/NCR5380.c b/drivers/scsi/NCR5380.c index d40ba0b..23392ae 100644 --- a/drivers/scsi/NCR5380.c +++ b/drivers/scsi/NCR5380.c @@ -91,7 +91,7 @@ #ifndef NDEBUG #define NDEBUG 0 #endif -#ifndef NDEBUG +#ifndef NDEBUG_ABORT #define NDEBUG_ABORT 0 #endif |