From patchwork Sun Oct 4 08:53:55 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geliang Tang X-Patchwork-Id: 7323461 Return-Path: X-Original-To: patchwork-linux-scsi@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 1896C9F1D5 for ; Sun, 4 Oct 2015 08:55:39 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 405532070C for ; Sun, 4 Oct 2015 08:55:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 575FD2070B for ; Sun, 4 Oct 2015 08:55:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751363AbbJDIzX (ORCPT ); Sun, 4 Oct 2015 04:55:23 -0400 Received: from m50-135.163.com ([123.125.50.135]:53140 "EHLO m50-135.163.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751247AbbJDIzW (ORCPT ); Sun, 4 Oct 2015 04:55:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=From:Subject:Date:Message-Id; bh=QskYsqc6N/ci8lsy7p l1gdHfsb5cH6+l7XFY6GKDTww=; b=oomQFt1dKbVPfSf71/kHUZLK79+li8ni7L 3rR1BBalrfoVYEdHzq3oR9UsdJg+oDIkPvla/WhOrCamskkVx1fZUDxjLq2UfzGZ HPF706OkNATL7RNV4rqYUdFgyeDD3WBlyaOOUXBDZgkpGC0Z78UgUZ6XKlb/fG8u jPMKBi9EA= Received: from localhost (unknown [116.77.141.25]) by smtp5 (Coremail) with SMTP id D9GowAB32tAr6RBWKJV3Cw--.6468S3; Sun, 04 Oct 2015 16:54:03 +0800 (CST) From: Geliang Tang To: Intel SCU Linux support , Artur Paszkiewicz , "James E.J. Bottomley" Cc: Geliang Tang , linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] isci: fix two comment typos Date: Sun, 4 Oct 2015 16:53:55 +0800 Message-Id: X-Mailer: git-send-email 2.5.0 X-CM-TRANSID: D9GowAB32tAr6RBWKJV3Cw--.6468S3 X-Coremail-Antispam: 1Uf129KBjvJXoW7trW8CF1UWw1DWFy5Cw4rXwb_yoW8JF4fpr Z5CrW09rs0qw4IkF1kt34UJFy3tayIkry7Wrn0q343Zrs0qrWqkF1jg34UZ3ZrArWkAr4D Xrs2qF98Xa1jvaDanT9S1TB71UUUUUUqnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x07jnjjDUUUUU= X-Originating-IP: [116.77.141.25] X-CM-SenderInfo: 5jhoxtpqjwt0rj6rljoofrz/1tbiMAuJmVWBRlvA7gAAsM Sender: linux-scsi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-scsi@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM,RCVD_IN_DNSWL_HI,T_DKIM_INVALID,T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Just fix two typos in the code comment. Signed-off-by: Geliang Tang Acked-by: Artur Paszkiewicz --- drivers/scsi/isci/request.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/scsi/isci/request.c b/drivers/scsi/isci/request.c index cfd0084..8fe106f 100644 --- a/drivers/scsi/isci/request.c +++ b/drivers/scsi/isci/request.c @@ -3306,7 +3306,7 @@ sci_io_request_construct_smp(struct device *dev, * @ireq: This parameter points to the isci_request allocated in the * request construct function. * - * SCI_SUCCESS on successfull completion, or specific failure code. + * SCI_SUCCESS on successful completion, or specific failure code. */ static enum sci_status isci_smp_request_build(struct isci_request *ireq) { @@ -3332,7 +3332,7 @@ static enum sci_status isci_smp_request_build(struct isci_request *ireq) * @sci_device: This parameter is the handle for the sci core's remote device * object that is the destination for this request. * - * SCI_SUCCESS on successfull completion, or specific failure code. + * SCI_SUCCESS on successful completion, or specific failure code. */ static enum sci_status isci_io_request_build(struct isci_host *ihost, struct isci_request *request,