From patchwork Thu Sep 8 03:35:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: chen zhang X-Patchwork-Id: 12969604 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 5E751ECAAD5 for ; Thu, 8 Sep 2022 03:35:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229514AbiIHDfM (ORCPT ); Wed, 7 Sep 2022 23:35:12 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57250 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229603AbiIHDfK (ORCPT ); Wed, 7 Sep 2022 23:35:10 -0400 Received: from mailgw.kylinos.cn (unknown [124.126.103.232]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 826114D4F8 for ; Wed, 7 Sep 2022 20:35:08 -0700 (PDT) X-UUID: e59c4c97f7de4a9a8687d8c73367b3b2-20220908 X-CPASD-INFO: 722c919ce29c4a48829d84e484a2a6a8@gIJsg2ZjZ5ORUnuvg6R_clhjaZRoYIW Dem6BYo9mjViVhH5xTV5uYFV9fWtVYV9dYVR6eGxQYmBgZFJ4i3-XblBgXoZgUZB3hnRsg2tfaQ== X-CLOUD-ID: 722c919ce29c4a48829d84e484a2a6a8 X-CPASD-SUMMARY: SIP:-1,APTIP:-2.0,KEY:0.0,FROMBLOCK:1,OB:0.0,URL:-5,TVAL:185. 0,ESV:0.0,ECOM:-5.0,ML:0.0,FD:0.0,CUTS:133.0,IP:-2.0,MAL:-5.0,PHF:-5.0,PHC:-5 .0,SPF:4.0,EDMS:-5,IPLABEL:4480.0,FROMTO:0,AD:0,FFOB:0.0,CFOB:2.0,SPC:0,SIG:- 5,AUF:10,DUF:4332,ACD:73,DCD:73,SL:0,EISP:0,AG:0,CFC:0.419,CFSR:0.04,UAT:0,RA F:0,IMG:-5.0,DFA:0,DTA:0,IBL:-2.0,ADI:-5,SBL:0,REDM:0,REIP:0,ESB:0,ATTNUM:0,E AF:0,CID:-5.0,VERSION:2.3.17 X-CPASD-ID: e59c4c97f7de4a9a8687d8c73367b3b2-20220908 X-CPASD-BLOCK: 1000 X-CPASD-STAGE: 1 X-UUID: e59c4c97f7de4a9a8687d8c73367b3b2-20220908 X-User: chenzhang@kylinos.cn Received: from localhost.localdomain [(112.64.161.44)] by mailgw (envelope-from ) (Generic MTA) with ESMTP id 289574322; Thu, 08 Sep 2022 11:35:33 +0800 From: chen zhang To: chunfeng.yun@mediatek.com, gregkh@linuxfoundation.org Cc: chenzhang_0901@163.com, linux-usb@vger.kernel.org, linux-mediatek@lists.infradead.org Subject: [PATCH v2] usb: mtu3: Fix spelling typo in comments Date: Thu, 8 Sep 2022 11:35:02 +0800 Message-Id: <20220908033502.18013-1-chenzhang@kylinos.cn> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org Fix spelling typo in comments. Reported-by: k2ci Signed-off-by: chen zhang --- change for v2: add k2ci tool explain: K2ci (Kylin Continuous Integration) is a code pre-verification tool independently developed by KylinSoft, which is used for ensuring the code quality of code submission. K2ci includes the comment check tool notes_check. This spelling typo was found using notes_check tool, which reported the following warning when check the v5.19 kernel release: python3 notes_check.py drivers/usb/mtu3/mtu3_qmu.c emtpy --- drivers/usb/mtu3/mtu3_qmu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/mtu3/mtu3_qmu.c b/drivers/usb/mtu3/mtu3_qmu.c index 2ea3157ddb6e..5c3fbfcf6483 100644 --- a/drivers/usb/mtu3/mtu3_qmu.c +++ b/drivers/usb/mtu3/mtu3_qmu.c @@ -220,7 +220,7 @@ static struct qmu_gpd *advance_deq_gpd(struct mtu3_gpd_ring *ring) return ring->dequeue; } -/* check if a ring is emtpy */ +/* check if a ring is empty */ static int gpd_ring_empty(struct mtu3_gpd_ring *ring) { struct qmu_gpd *enq = ring->enqueue;