From patchwork Thu Jul 21 09:34:38 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Slark Xiao X-Patchwork-Id: 12924938 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EE89AC43334 for ; Thu, 21 Jul 2022 09:35:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232621AbiGUJfK (ORCPT ); Thu, 21 Jul 2022 05:35:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37012 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230506AbiGUJfJ (ORCPT ); Thu, 21 Jul 2022 05:35:09 -0400 Received: from m12-18.163.com (m12-18.163.com [220.181.12.18]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 185D181480; Thu, 21 Jul 2022 02:35:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=From:Subject:Date:Message-Id:MIME-Version; bh=y7YlJ 0gUBvWmouic+7YQgu3orvoqLTEd9aUBCF6F6go=; b=D8OnmR9hd6L8W370Oml0M lIgotPwxqpiZ38/ohD9xdbBt2YTNQwIpdVwb/5E7/cnSF1nN4TxKJd/Nt4Ebosb6 y02zg7Lucu0dlnaql2Qw94JnGfsQLce6Hur2MmmhSNkv3oJxKW5i3Fgp/jvvaNVL TXrhqPEiLn4H1R2O7UkQec= Received: from localhost.localdomain (unknown [223.104.68.234]) by smtp14 (Coremail) with SMTP id EsCowAD3_wevHdliMAj_OA--.377S2; Thu, 21 Jul 2022 17:34:43 +0800 (CST) From: Slark Xiao To: artur.paszkiewicz@intel.com, jejb@linux.ibm.com, martin.petersen@oracle.com Cc: linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, Slark Xiao Subject: [PATCH] scsi: isci: Fix typo 'the the' in comment Date: Thu, 21 Jul 2022 17:34:38 +0800 Message-Id: <20220721093438.51753-1-slark_xiao@163.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-CM-TRANSID: EsCowAD3_wevHdliMAj_OA--.377S2 X-Coremail-Antispam: 1Uf129KBjvJXoWxCFWDJr4xCw48XFW7Cw1DGFg_yoW5WF1Dp3 y8G34S9r4DAa1Ikwn7Kw4UXF98ua1xGasrGa43X3W5WFWYyryj9ryUKay5ZFWUXry0gr90 qrn8try7Ga4DtrDanT9S1TB71UUUUUUqnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x0pRJPEsUUUUU= X-Originating-IP: [223.104.68.234] X-CM-SenderInfo: xvod2y5b0lt0i6rwjhhfrp/1tbiJRNFZGAJpJp9vQAAsA Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org Replace 'the the' with 'the' in the comment. Signed-off-by: Slark Xiao --- drivers/scsi/isci/host.h | 2 +- drivers/scsi/isci/remote_device.h | 2 +- drivers/scsi/isci/remote_node_context.h | 2 +- drivers/scsi/isci/task.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/isci/host.h b/drivers/scsi/isci/host.h index 6bc3f022630a..64e4759f25d7 100644 --- a/drivers/scsi/isci/host.h +++ b/drivers/scsi/isci/host.h @@ -244,7 +244,7 @@ enum sci_controller_states { SCIC_INITIALIZED, /** - * This state indicates the the controller is in the process of becoming + * This state indicates the controller is in the process of becoming * ready (i.e. starting). In this state no new IO operations are permitted. * This state is entered from the INITIALIZED state. */ diff --git a/drivers/scsi/isci/remote_device.h b/drivers/scsi/isci/remote_device.h index 3ad681c4c20a..db097483ff04 100644 --- a/drivers/scsi/isci/remote_device.h +++ b/drivers/scsi/isci/remote_device.h @@ -198,7 +198,7 @@ enum sci_status sci_remote_device_reset_complete( * permitted. This state is entered from the INITIAL state. This state * is entered from the STOPPING state. * - * @SCI_DEV_STARTING: This state indicates the the remote device is in + * @SCI_DEV_STARTING: This state indicates the remote device is in * the process of becoming ready (i.e. starting). In this state no new * IO operations are permitted. This state is entered from the STOPPED * state. diff --git a/drivers/scsi/isci/remote_node_context.h b/drivers/scsi/isci/remote_node_context.h index c7ee81d01125..f22950b12b8b 100644 --- a/drivers/scsi/isci/remote_node_context.h +++ b/drivers/scsi/isci/remote_node_context.h @@ -154,7 +154,7 @@ enum sci_remote_node_context_destination_state { /** * struct sci_remote_node_context - This structure contains the data * associated with the remote node context object. The remote node context - * (RNC) object models the the remote device information necessary to manage + * (RNC) object models the remote device information necessary to manage * the silicon RNC. */ struct sci_remote_node_context { diff --git a/drivers/scsi/isci/task.c b/drivers/scsi/isci/task.c index c514b20293b2..9a311a58c37c 100644 --- a/drivers/scsi/isci/task.c +++ b/drivers/scsi/isci/task.c @@ -67,7 +67,7 @@ /** * isci_task_refuse() - complete the request to the upper layer driver in * the case where an I/O needs to be completed back in the submit path. -* @ihost: host on which the the request was queued +* @ihost: host on which the request was queued * @task: request to complete * @response: response code for the completed task. * @status: status code for the completed task.