From patchwork Tue Dec 12 11:09:59 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: shitao X-Patchwork-Id: 13488969 Received: from mailgw.kylinos.cn (mailgw.kylinos.cn [124.126.103.232]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1DE73172C; Tue, 12 Dec 2023 03:10:10 -0800 (PST) X-UUID: e663223c89654ae891ebdabf1917482d-20231212 X-CID-O-RULE: Release_Ham X-CID-RULE: Release_Ham X-CID-O-INFO: VERSION:1.1.33,REQID:f2408a31-901d-4b62-b60f-39d9f2e3e566,IP:5,U RL:0,TC:0,Content:-5,EDM:0,RT:0,SF:-15,FILE:0,BULK:0,RULE:Release_Ham,ACTI ON:release,TS:-15 X-CID-INFO: VERSION:1.1.33,REQID:f2408a31-901d-4b62-b60f-39d9f2e3e566,IP:5,URL :0,TC:0,Content:-5,EDM:0,RT:0,SF:-15,FILE:0,BULK:0,RULE:Release_Ham,ACTION :release,TS:-15 X-CID-META: VersionHash:364b77b,CLOUDID:a732b373-1bd3-4f48-b671-ada88705968c,B ulkID:231212180702V8U29WZV,BulkQuantity:7,Recheck:0,SF:66|24|17|19|44|102, TC:nil,Content:0,EDM:-3,IP:-2,URL:0,File:nil,Bulk:40,QS:nil,BEC:nil,COL:0, OSI:0,OSA:0,AV:0,LES:1,SPR:NO,DKR:0,DKP:0,BRR:0,BRE:0 X-CID-BVR: 0 X-CID-BAS: 0,_,0,_ X-CID-FACTOR: TF_CID_SPAM_SNR,TF_CID_SPAM_FAS,TF_CID_SPAM_FSD,TF_CID_SPAM_FSI X-UUID: e663223c89654ae891ebdabf1917482d-20231212 X-User: shitao@kylinos.cn Received: from kylin-pc.. [(112.64.161.44)] by mailgw (envelope-from ) (Generic MTA) with ESMTP id 1670769016; Tue, 12 Dec 2023 19:10:02 +0800 From: shitao To: gregkh@linuxfoundation.org Cc: alcooperx@gmail.com, chunfeng.yun@mediatek.com, justin.chen@broadcom.com, kernel-bot@kylinos.cn, linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-usb@vger.kernel.org, shitao@kylinos.cn Subject: [PATCH] usb: mtu3: fix comment typo Date: Tue, 12 Dec 2023 19:09:59 +0800 Message-Id: <20231212110959.3115422-1-shitao@kylinos.cn> X-Mailer: git-send-email 2.34.1 In-Reply-To: <2023121216-shabby-hastily-f094@gregkh> References: <2023121216-shabby-hastily-f094@gregkh> Precedence: bulk X-Mailing-List: linux-usb@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Reported-by: k2ci Signed-off-by: shitao --- Hi, according to your suggestion, I have split it into two patches and added some simple instructions. This is about fixing the misspelling of "empty" in the mtu3_qmu.c file. thanks. 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 3d77408e3133..03f26589b056 100644 --- a/drivers/usb/mtu3/mtu3_qmu.c +++ b/drivers/usb/mtu3/mtu3_qmu.c @@ -221,7 +221,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 bool gpd_ring_empty(struct mtu3_gpd_ring *ring) { struct qmu_gpd *enq = ring->enqueue;