summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/dtc.h
diff options
context:
space:
mode:
authorFinn Thain <fthain@telegraphics.com.au>2014-11-12 00:11:58 -0500
committerChristoph Hellwig <hch@lst.de>2014-11-20 03:11:08 -0500
commit8c32513bd395dc5d382e4883097482567cf8bbc5 (patch)
treef603eda2bb0ccf602c88b69e7fb9f6fb6cb947c7 /drivers/scsi/dtc.h
parent270ac2c290ad8b83c92ceeed07aaf49ec5807851 (diff)
ncr5380: Cleanup host info() methods
If the host->info() method is not set, then host->name is used by default. For atari_scsi, that is exactly the same text. So remove the redundant info() method. Keep sun3_scsi.c in line with atari_scsi. Some NCR5380 drivers return an empty string from the info() method (arm/cumana_1.c arm/oak.c mac_scsi.c) while other drivers use the default (dmx3191d dtc.c g_NCR5380.c pas16.c t128.c). Implement a common info() method to replace a lot of duplicated code which the various drivers use to announce the same information. This replaces most of the (deprecated) show_info() output and all of the NCR5380_print_info() output. This also eliminates a bunch of code in g_NCR5380 which just duplicates functionality in the core driver. 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/dtc.h')
-rw-r--r--drivers/scsi/dtc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/dtc.h b/drivers/scsi/dtc.h
index 46ad3403bda7..48e2c399ace6 100644
--- a/drivers/scsi/dtc.h
+++ b/drivers/scsi/dtc.h
@@ -65,6 +65,7 @@
65#define NCR5380_queue_command dtc_queue_command 65#define NCR5380_queue_command dtc_queue_command
66#define NCR5380_abort dtc_abort 66#define NCR5380_abort dtc_abort
67#define NCR5380_bus_reset dtc_bus_reset 67#define NCR5380_bus_reset dtc_bus_reset
68#define NCR5380_info dtc_info
68#define NCR5380_show_info dtc_show_info 69#define NCR5380_show_info dtc_show_info
69#define NCR5380_write_info dtc_write_info 70#define NCR5380_write_info dtc_write_info
70 71