aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/atari_NCR5380.c
diff options
context:
space:
mode:
authorFinn Thain <fthain@telegraphics.com.au>2014-11-12 00:12:01 -0500
committerChristoph Hellwig <hch@lst.de>2014-11-20 03:11:10 -0500
commit96068e6b4d86a397f50ae401723f315110874e1a (patch)
treebbab76ec5da519d565ba706021c9cf9921335e06 /drivers/scsi/atari_NCR5380.c
parentd572f65fdf78a6dcb55b86ad8684f88830bf2e08 (diff)
ncr5380: Remove *_RELEASE macros
The *_RELEASE macros don't tell me anything. In some cases the version in the macro contradicts the version in the comments. Anyway, the Linux kernel version is sufficient information. Remove these macros to improve readability. Signed-off-by: Finn Thain <fthain@telegraphics.com.au> Reviewed-by: Hannes Reinecke <hare@suse.de> Tested-by: Michael Schmitz <schmitzmic@gmail.com> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/atari_NCR5380.c')
-rw-r--r--drivers/scsi/atari_NCR5380.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/scsi/atari_NCR5380.c b/drivers/scsi/atari_NCR5380.c
index 4d903b86adda..31bd81210fc4 100644
--- a/drivers/scsi/atari_NCR5380.c
+++ b/drivers/scsi/atari_NCR5380.c
@@ -11,8 +11,6 @@
11 * drew@colorado.edu 11 * drew@colorado.edu
12 * +1 (303) 666-5836 12 * +1 (303) 666-5836
13 * 13 *
14 * DISTRIBUTION RELEASE 6.
15 *
16 * For more information, please consult 14 * For more information, please consult
17 * 15 *
18 * NCR 5380 Family 16 * NCR 5380 Family
@@ -741,7 +739,6 @@ static void NCR5380_print_status(struct Scsi_Host *instance)
741 739
742 hostdata = (struct NCR5380_hostdata *)instance->hostdata; 740 hostdata = (struct NCR5380_hostdata *)instance->hostdata;
743 741
744 printk("\nNCR5380 core release=%d.\n", NCR5380_PUBLIC_RELEASE);
745 local_irq_save(flags); 742 local_irq_save(flags);
746 printk("NCR5380: coroutine is%s running.\n", 743 printk("NCR5380: coroutine is%s running.\n",
747 main_running ? "" : "n't"); 744 main_running ? "" : "n't");
@@ -785,7 +782,6 @@ static int __maybe_unused NCR5380_show_info(struct seq_file *m,
785 782
786 hostdata = (struct NCR5380_hostdata *)instance->hostdata; 783 hostdata = (struct NCR5380_hostdata *)instance->hostdata;
787 784
788 seq_printf(m, "NCR5380 core release=%d.\n", NCR5380_PUBLIC_RELEASE);
789 local_irq_save(flags); 785 local_irq_save(flags);
790 seq_printf(m, "NCR5380: coroutine is%s running.\n", 786 seq_printf(m, "NCR5380: coroutine is%s running.\n",
791 main_running ? "" : "n't"); 787 main_running ? "" : "n't");