diff options
author | Joe Perches <joe@perches.com> | 2013-09-03 22:45:58 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-09-04 12:26:36 +0200 |
commit | 9e03aa2f830c5f0ea8c28790a61e65ed7403b053 (patch) | |
tree | 0b4e5ec8491e275d48b51dd40a711d9704fe2e07 /drivers/scsi/qla2xxx | |
parent | Fix comment typo for init_cma_reserved_pageblock (diff) | |
download | linux-9e03aa2f830c5f0ea8c28790a61e65ed7403b053.tar.xz linux-9e03aa2f830c5f0ea8c28790a61e65ed7403b053.zip |
treewide: Convert retrun typos to return
Tyops should be fixed.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/scsi/qla2xxx')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_bsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_bsg.c b/drivers/scsi/qla2xxx/qla_bsg.c index 417eaad50ae2..5afdc3a25014 100644 --- a/drivers/scsi/qla2xxx/qla_bsg.c +++ b/drivers/scsi/qla2xxx/qla_bsg.c @@ -1882,7 +1882,7 @@ done: bsg_job->reply->reply_payload_rcv_len = 0; bsg_job->reply->result = (DID_OK) << 16; bsg_job->job_done(bsg_job); - /* Always retrun success, vendor rsp carries correct status */ + /* Always return success, vendor rsp carries correct status */ return 0; } |