From patchwork Wed Sep 7 05:14:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: chen zhang X-Patchwork-Id: 12968445 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 6E3F8C6FA82 for ; Wed, 7 Sep 2022 05:14:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229486AbiIGFOt (ORCPT ); Wed, 7 Sep 2022 01:14:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59288 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229574AbiIGFOr (ORCPT ); Wed, 7 Sep 2022 01:14:47 -0400 Received: from mailgw.kylinos.cn (unknown [124.126.103.232]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id ABB5D23171 for ; Tue, 6 Sep 2022 22:14:39 -0700 (PDT) X-UUID: 62c8ddb670804671a2ea9acf19b85d5d-20220907 X-CPASD-INFO: feb4ecfc28a04acd8a34316f8529cc1a@r7WcVJKVlJNeWKN8g6SunliSY2RjXVa 1em9SaZGTXYGVhH5xTV5uYFV9fWtVYV9dYVR6eGxQYmBgZFJ4i3-XblBgXoZgUZB3taecVJWRlg== X-CLOUD-ID: feb4ecfc28a04acd8a34316f8529cc1a 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:85.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:0.0,SPC:0,SIG:-5 ,AUF:4,DUF:4240,ACD:73,DCD:73,SL:0,EISP:0,AG:0,CFC:0.434,CFSR:0.077,UAT:0,RAF :0,IMG:-5.0,DFA:0,DTA:0,IBL:-2.0,ADI:-5,SBL:0,REDM:0,REIP:0,ESB:0,ATTNUM:0,EA F:0,CID:-5.0,VERSION:2.3.17 X-CPASD-ID: 62c8ddb670804671a2ea9acf19b85d5d-20220907 X-CPASD-BLOCK: 1000 X-CPASD-STAGE: 1 X-UUID: 62c8ddb670804671a2ea9acf19b85d5d-20220907 X-User: chenzhang@kylinos.cn Received: from localhost.localdomain [(112.64.161.44)] by mailgw (envelope-from ) (Generic MTA) with ESMTP id 1473941920; Wed, 07 Sep 2022 13:15:03 +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] usb: mtu3: Fix spelling typo in comments Date: Wed, 7 Sep 2022 13:14:36 +0800 Message-Id: <20220907051436.51703-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 --- 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;