diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-06-13 20:39:21 +0200 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-06-29 15:14:54 -0500 |
commit | 2ba51ea28ba54ea8808ba7dfd694f1dd37e8b7c7 (patch) | |
tree | 5de96c807f204cb51d81c482058661efb5511173 /drivers/scsi/sun3_scsi_vme.c | |
parent | 0cb8cd76aa6fc759de3b59f4dd5ab5ed6c3a1149 (diff) | |
download | op-kernel-dev-2ba51ea28ba54ea8808ba7dfd694f1dd37e8b7c7.zip op-kernel-dev-2ba51ea28ba54ea8808ba7dfd694f1dd37e8b7c7.tar.gz |
[SCSI] sun3: Add various missing NDEBUG* definitions
This fixes a.o.:
drivers/scsi/sun3_scsi.h:225:5: warning: "NDEBUG" is not defined
drivers/scsi/sun3_scsi.h:345:14: warning: "NDEBUG_ABORT" is not defined
drivers/scsi/sun3_scsi.h:351:14: warning: "NDEBUG_TAGS" is not defined
drivers/scsi/sun3_scsi.h:357:14: warning: "NDEBUG_MERGING" is not defined
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/sun3_scsi_vme.c')
-rw-r--r-- | drivers/scsi/sun3_scsi_vme.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/scsi/sun3_scsi_vme.c b/drivers/scsi/sun3_scsi_vme.c index c0252db..fbba78e 100644 --- a/drivers/scsi/sun3_scsi_vme.c +++ b/drivers/scsi/sun3_scsi_vme.c @@ -39,6 +39,12 @@ /* dma on! */ #define REAL_DMA +#define NDEBUG 0 + +#define NDEBUG_ABORT 0x00100000 +#define NDEBUG_TAGS 0x00200000 +#define NDEBUG_MERGING 0x00400000 + #include "scsi.h" #include "initio.h" #include <scsi/scsi_host.h> @@ -50,8 +56,6 @@ extern int sun3_map_test(unsigned long, char *); /*#define RESET_BOOT */ #define DRIVER_SETUP -#define NDEBUG 0 - /* * BUG can be used to trigger a strange code-size related hang on 2.1 kernels */ |