aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/NCR5380.h
diff options
context:
space:
mode:
authorFinn Thain <fthain@telegraphics.com.au>2014-03-17 20:42:21 -0400
committerChristoph Hellwig <hch@lst.de>2014-05-28 06:10:43 -0400
commit9829e52897359a17169410960e2a9dfcababb83b (patch)
tree7b40861443beafa31008301b81cc8a1588e18396 /drivers/scsi/NCR5380.h
parentd65e634a86e681ffd36717cde63fb81edbb6f719 (diff)
scsi/NCR5380: fix and standardize NDEBUG macros
All three NCR5380 core driver implementations share the same NCR5380.h header file so they need to agree on certain macro definitions. The flag bit used by the NDEBUG_MERGING macro in atari_NCR5380 and sun3_NCR5380 collides with the bit used by NDEBUG_LISTS. Moreover, NDEBUG_ABORT appears in NCR5380.c so it should be defined in NCR5380.h rather than in each of the many drivers using that core. An undefined NDEBUG_ABORT macro caused compiler errors and led to dodgy workarounds in the core driver that can now be removed. (See commits f566a576bca09de85bf477fc0ab2c8c96405b77b and 185a7a1cd79b9891e3c17abdb103ba1c98d6ca7a.) Move all of the NDEBUG_ABORT, NDEBUG_TAGS and NDEBUG_MERGING macro definitions into NCR5380.h where all the other NDEBUG macros live. Also, incorrect "#ifdef NDEBUG" becomes "#if NDEBUG" to fix the warning: drivers/scsi/mac_scsi.c: At top level: drivers/scsi/NCR5380.c:418: warning: 'NCR5380_print' defined but not used drivers/scsi/NCR5380.c:459: warning: 'NCR5380_print_phase' defined but not used The debugging code is now enabled when NDEBUG != 0. Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Acked-by: Sam Creasey <sammy@sammy.net> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/NCR5380.h')
-rw-r--r--drivers/scsi/NCR5380.h22
1 files changed, 18 insertions, 4 deletions
diff --git a/drivers/scsi/NCR5380.h b/drivers/scsi/NCR5380.h
index 9cb3d316bbce..1541c62ddf5f 100644
--- a/drivers/scsi/NCR5380.h
+++ b/drivers/scsi/NCR5380.h
@@ -56,6 +56,9 @@
56#define NDEBUG_C400_PREAD 0x100000 56#define NDEBUG_C400_PREAD 0x100000
57#define NDEBUG_C400_PWRITE 0x200000 57#define NDEBUG_C400_PWRITE 0x200000
58#define NDEBUG_LISTS 0x400000 58#define NDEBUG_LISTS 0x400000
59#define NDEBUG_ABORT 0x800000
60#define NDEBUG_TAGS 0x1000000
61#define NDEBUG_MERGING 0x2000000
59 62
60#define NDEBUG_ANY 0xFFFFFFFFUL 63#define NDEBUG_ANY 0xFFFFFFFFUL
61 64
@@ -288,9 +291,24 @@ struct NCR5380_hostdata {
288 291
289#ifdef __KERNEL__ 292#ifdef __KERNEL__
290 293
294#ifndef NDEBUG
295#define NDEBUG (0)
296#endif
297
298#if NDEBUG
299#define dprintk(flg, fmt, args...) \
300 do { if ((NDEBUG) & (flg)) pr_debug(fmt, ## args); } while (0)
301#define NCR5380_dprint(flg, arg) \
302 do { if ((NDEBUG) & (flg)) NCR5380_print(arg); } while (0)
303#define NCR5380_dprint_phase(flg, arg) \
304 do { if ((NDEBUG) & (flg)) NCR5380_print_phase(arg); } while (0)
305static void NCR5380_print_phase(struct Scsi_Host *instance);
306static void NCR5380_print(struct Scsi_Host *instance);
307#else
291#define dprintk(flg, fmt, args...) do {} while (0) 308#define dprintk(flg, fmt, args...) do {} while (0)
292#define NCR5380_dprint(flg, arg) do {} while (0) 309#define NCR5380_dprint(flg, arg) do {} while (0)
293#define NCR5380_dprint_phase(flg, arg) do {} while (0) 310#define NCR5380_dprint_phase(flg, arg) do {} while (0)
311#endif
294 312
295#if defined(AUTOPROBE_IRQ) 313#if defined(AUTOPROBE_IRQ)
296static int NCR5380_probe_irq(struct Scsi_Host *instance, int possible); 314static int NCR5380_probe_irq(struct Scsi_Host *instance, int possible);
@@ -303,10 +321,6 @@ static irqreturn_t NCR5380_intr(int irq, void *dev_id);
303#endif 321#endif
304static void NCR5380_main(struct work_struct *work); 322static void NCR5380_main(struct work_struct *work);
305static void __maybe_unused NCR5380_print_options(struct Scsi_Host *instance); 323static void __maybe_unused NCR5380_print_options(struct Scsi_Host *instance);
306#ifdef NDEBUG
307static void NCR5380_print_phase(struct Scsi_Host *instance);
308static void NCR5380_print(struct Scsi_Host *instance);
309#endif
310static int NCR5380_abort(Scsi_Cmnd * cmd); 324static int NCR5380_abort(Scsi_Cmnd * cmd);
311static int NCR5380_bus_reset(Scsi_Cmnd * cmd); 325static int NCR5380_bus_reset(Scsi_Cmnd * cmd);
312static int NCR5380_queue_command(struct Scsi_Host *, struct scsi_cmnd *); 326static int NCR5380_queue_command(struct Scsi_Host *, struct scsi_cmnd *);