diff options
author | Bart Van Assche <bvanassche@acm.org> | 2012-06-29 11:35:05 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-07-20 03:58:41 -0400 |
commit | 84feb1664e5e6823105414df77740fda70846b99 (patch) | |
tree | f2a5c4c185a8ac4ad733599a5c1432607dc77b58 /drivers/scsi/scsi_lib.c | |
parent | 940f5d47e2f2e1fa00443921a0abf4822335b54d (diff) |
[SCSI] Change return type of scsi_queue_insert() into void
The return value of scsi_queue_insert() is ignored by all its
callers, hence change the return type of this function into
void.
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
Reviewed-by: Tejun Heo <tj@kernel.org>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/scsi_lib.c')
-rw-r--r-- | drivers/scsi/scsi_lib.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index 0e52ff035135..8af6a6497c4f 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c | |||
@@ -109,7 +109,7 @@ static void scsi_unprep_request(struct request *req) | |||
109 | * for a requeue after completion, which should only occur in this | 109 | * for a requeue after completion, which should only occur in this |
110 | * file. | 110 | * file. |
111 | */ | 111 | */ |
112 | static int __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, int unbusy) | 112 | static void __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, int unbusy) |
113 | { | 113 | { |
114 | struct Scsi_Host *host = cmd->device->host; | 114 | struct Scsi_Host *host = cmd->device->host; |
115 | struct scsi_device *device = cmd->device; | 115 | struct scsi_device *device = cmd->device; |
@@ -162,8 +162,6 @@ static int __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, int unbusy) | |||
162 | spin_unlock_irqrestore(q->queue_lock, flags); | 162 | spin_unlock_irqrestore(q->queue_lock, flags); |
163 | 163 | ||
164 | kblockd_schedule_work(q, &device->requeue_work); | 164 | kblockd_schedule_work(q, &device->requeue_work); |
165 | |||
166 | return 0; | ||
167 | } | 165 | } |
168 | 166 | ||
169 | /* | 167 | /* |
@@ -185,9 +183,9 @@ static int __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, int unbusy) | |||
185 | * Notes: This could be called either from an interrupt context or a | 183 | * Notes: This could be called either from an interrupt context or a |
186 | * normal process context. | 184 | * normal process context. |
187 | */ | 185 | */ |
188 | int scsi_queue_insert(struct scsi_cmnd *cmd, int reason) | 186 | void scsi_queue_insert(struct scsi_cmnd *cmd, int reason) |
189 | { | 187 | { |
190 | return __scsi_queue_insert(cmd, reason, 1); | 188 | __scsi_queue_insert(cmd, reason, 1); |
191 | } | 189 | } |
192 | /** | 190 | /** |
193 | * scsi_execute - insert request and wait for the result | 191 | * scsi_execute - insert request and wait for the result |