]> git.karo-electronics.de Git - linux-beck.git/commitdiff
treewide: Convert retrun typos to return
authorJoe Perches <joe@perches.com>
Tue, 3 Sep 2013 20:45:58 +0000 (13:45 -0700)
committerJiri Kosina <jkosina@suse.cz>
Wed, 4 Sep 2013 10:26:36 +0000 (12:26 +0200)
Tyops should be fixed.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/net/wireless/rtlwifi/rtl8192de/dm.c
drivers/scsi/bfa/bfad_im.c
drivers/scsi/hpsa.c
drivers/scsi/lpfc/lpfc_bsg.c
drivers/scsi/qla2xxx/qla_bsg.c
drivers/tty/serial/kgdboc.c

index 47875ba09ff8128d22375514ff601dbbf1f6af59..f700f7a614b264691ce8be3cfb79f219f5edd9ad 100644 (file)
@@ -416,7 +416,7 @@ static void rtl92d_dm_dig(struct ieee80211_hw *hw)
 
        /* because we will send data pkt when scanning
         * this will cause some ap like gear-3700 wep TP
-        * lower if we retrun here, this is the diff of
+        * lower if we return here, this is the diff of
         * mac80211 driver vs ieee80211 driver */
        /* if (rtlpriv->mac80211.act_scanning)
         *      return; */
index 9796284512a915441c91d2af119b4d6fb7b11c82..9967f9c148510f2958b06e414b0d218ecc46759b 100644 (file)
@@ -206,7 +206,7 @@ bfad_im_abort_handler(struct scsi_cmnd *cmnd)
        spin_lock_irqsave(&bfad->bfad_lock, flags);
        hal_io = (struct bfa_ioim_s *) cmnd->host_scribble;
        if (!hal_io) {
-               /* IO has been completed, retrun success */
+               /* IO has been completed, return success */
                rc = SUCCESS;
                goto out;
        }
index 7f4f790a3d716109ed2a73a8379b222ed8019331..4cfa3af95b528a5195bc8b4dde5374a8f5064dff 100644 (file)
@@ -1054,7 +1054,7 @@ free_and_out:
 }
 
 /*
- * Lookup bus/target/lun and retrun corresponding struct hpsa_scsi_dev_t *
+ * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
  * Assume's h->devlock is held.
  */
 static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
index 6630520d295cbf5c8637b25a90835ef73214a7ac..fcbedd6053c4b9f026fffcbade61b77a60ccb0b7 100644 (file)
@@ -2627,7 +2627,7 @@ err_get_xri_exit:
  * @phba: Pointer to HBA context object
  *
  * This function allocates BSG_MBOX_SIZE (4KB) page size dma buffer and.
- * retruns the pointer to the buffer.
+ * returns the pointer to the buffer.
  **/
 static struct lpfc_dmabuf *
 lpfc_bsg_dma_page_alloc(struct lpfc_hba *phba)
index 417eaad50ae23ab9e796ebe2f6b20685e61d8d8e..5afdc3a25014c52ed8f0a449c7dfe4e3dc6c2c9d 100644 (file)
@@ -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;
 }
 
index 10020547c60b5735d4cbf667956c911aa06a1030..a260cde743e272657673474d9612c0bf663d3995 100644 (file)
@@ -45,7 +45,7 @@ static int kgdboc_reset_connect(struct input_handler *handler,
 {
        input_reset_device(dev);
 
-       /* Retrun an error - we do not want to bind, just to reset */
+       /* Return an error - we do not want to bind, just to reset */
        return -ENODEV;
 }