diff options
author | Christoph Hellwig <hch@lst.de> | 2014-11-24 09:36:20 -0500 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-12-04 03:55:46 -0500 |
commit | 17ea01267c75c5a2e00f3603037715d0d2ce4a58 (patch) | |
tree | ac78360f95ee125cd1ee6f0238e2473f948c6377 /include/scsi | |
parent | b70870c38ede2bb5b0a738f2f69de145a1931a00 (diff) |
scsi: remove scsi_get_tag_type
Both remaining users are better of just checking sdev->simple_tags
directly.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com
Reviewed-by: Hannes Reinecke <hare@suse.de>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/scsi_tcq.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/include/scsi/scsi_tcq.h b/include/scsi/scsi_tcq.h index 59578beac053..681e010c2c48 100644 --- a/include/scsi/scsi_tcq.h +++ b/include/scsi/scsi_tcq.h | |||
@@ -15,19 +15,6 @@ | |||
15 | 15 | ||
16 | 16 | ||
17 | #ifdef CONFIG_BLOCK | 17 | #ifdef CONFIG_BLOCK |
18 | /** | ||
19 | * scsi_get_tag_type - get the type of tag the device supports | ||
20 | * @sdev: the scsi device | ||
21 | */ | ||
22 | static inline int scsi_get_tag_type(struct scsi_device *sdev) | ||
23 | { | ||
24 | if (!sdev->tagged_supported) | ||
25 | return 0; | ||
26 | if (sdev->simple_tags) | ||
27 | return MSG_SIMPLE_TAG; | ||
28 | return 0; | ||
29 | } | ||
30 | |||
31 | static inline void scsi_set_tag_type(struct scsi_device *sdev, int tag) | 18 | static inline void scsi_set_tag_type(struct scsi_device *sdev, int tag) |
32 | { | 19 | { |
33 | switch (tag) { | 20 | switch (tag) { |