From patchwork Thu Jun 23 09:59:26 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jiang Jian X-Patchwork-Id: 585401 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 3C84AC43334 for ; Thu, 23 Jun 2022 09:59:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230344AbiFWJ74 (ORCPT ); Thu, 23 Jun 2022 05:59:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33130 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230009AbiFWJ74 (ORCPT ); Thu, 23 Jun 2022 05:59:56 -0400 Received: from smtpbg.qq.com (smtpbg136.qq.com [106.55.201.188]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CF6D248E7F; Thu, 23 Jun 2022 02:59:51 -0700 (PDT) X-QQ-mid: bizesmtp81t1655978372tuh6nrgm Received: from ubuntu.localdomain ( [106.117.99.68]) by bizesmtp.qq.com (ESMTP) with id ; Thu, 23 Jun 2022 17:59:28 +0800 (CST) X-QQ-SSF: 01000000008000B0C000B00A0000000 X-QQ-FEAT: 3uawQE1sH+2f1013LW7NDUvhD5nitFHiWU9+7JLKgy188gCFOYzyMkSUotYzW ehfQtAdp1GDRZmZGmXW+sJ69XFawhcFNDYvfV9eg5blW931eIdSo84lGJKct8nvLWbJlr8B AaAxbDeKpcwyjSDulTa8XAM305s1qYz3/6XxeAo8d/RMeeFNYMxnn8xh1RkNPyWOY3gs7gt GBOl7iYfqiTA5OcdCUlQpVahGwtvKgKIdz9rrVY97nH1RPVoUgDna9vouK4wUHwAhN5qigF 5amZqs9sK99qPNIn1oRm9x+w47EJ+W5tvojSr4jmwBwVmVRlpp81h9pK5J3uYxx7bnLy75L l0CmpHqjiB7C3K0RKdMBRtTIpiKlg== X-QQ-GoodBg: 0 From: Jiang Jian To: jejb@linux.ibm.com, martin.petersen@oracle.com Cc: artur.paszkiewicz@intel.com, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, Jiang Jian Subject: [PATCH] scsi: isci: drop unexpected word 'for' in comments Date: Thu, 23 Jun 2022 17:59:26 +0800 Message-Id: <20220623095926.23910-1-jiangjian@cdjrlc.com> X-Mailer: git-send-email 2.17.1 X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybgspam:qybgspam7 Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org there is an unexpected word 'for' in the comments that need to be dropped file - drivers/scsi/isci/remote_device.h line - 214 * @SCI_STP_DEV_CMD: This is the command state for for the STP remote changed to: * @SCI_STP_DEV_CMD: This is the command state for the STP remote Signed-off-by: Jiang Jian --- drivers/scsi/isci/remote_device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/isci/remote_device.h b/drivers/scsi/isci/remote_device.h index 3ad681c4c20a..268a3c851cb0 100644 --- a/drivers/scsi/isci/remote_device.h +++ b/drivers/scsi/isci/remote_device.h @@ -211,7 +211,7 @@ enum sci_status sci_remote_device_reset_complete( * device. When there are no active IO for the device it is is in this * state. * - * @SCI_STP_DEV_CMD: This is the command state for for the STP remote + * @SCI_STP_DEV_CMD: This is the command state for the STP remote * device. This state is entered when the device is processing a * non-NCQ command. The device object will fail any new start IO * requests until this command is complete.