From patchwork Tue Dec 12 11:17:54 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: shitao X-Patchwork-Id: 13489007 Received: from mailgw.kylinos.cn (mailgw.kylinos.cn [124.126.103.232]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 815A210FC; Tue, 12 Dec 2023 03:18:06 -0800 (PST) X-UUID: a3416e3825d04d11ab433e5be57319f2-20231212 X-CID-O-RULE: Release_Ham X-CID-RULE: Release_Ham X-CID-O-INFO: VERSION:1.1.33,REQID:d7be38fc-fbff-4d83-8e6b-f3bcdc06f1f6,IP:5,U RL:0,TC:0,Content:0,EDM:0,RT:0,SF:-15,FILE:0,BULK:0,RULE:Release_Ham,ACTIO N:release,TS:-10 X-CID-INFO: VERSION:1.1.33,REQID:d7be38fc-fbff-4d83-8e6b-f3bcdc06f1f6,IP:5,URL :0,TC:0,Content:0,EDM:0,RT:0,SF:-15,FILE:0,BULK:0,RULE:Release_Ham,ACTION: release,TS:-10 X-CID-META: VersionHash:364b77b,CLOUDID:a31616bd-2ac7-4da2-9f94-677a477649d9,B ulkID:2312121820440JAM3HPF,BulkQuantity:6,Recheck:0,SF:24|17|19|44|66|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: a3416e3825d04d11ab433e5be57319f2-20231212 X-User: shitao@kylinos.cn Received: from kylin-pc.. [(112.64.161.44)] by mailgw (envelope-from ) (Generic MTA) with ESMTP id 586504534; Tue, 12 Dec 2023 19:17:58 +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: gadget: udc: bdc: fix comment typo Date: Tue, 12 Dec 2023 19:17:54 +0800 Message-Id: <20231212111754.3115465-1-shitao@kylinos.cn> X-Mailer: git-send-email 2.34.1 In-Reply-To: <2023121251-attest-shout-cbaa@gregkh> References: <2023121251-attest-shout-cbaa@gregkh> Precedence: bulk X-Mailing-List: linux-usb@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Fix comment typo in bdc_core.c file. "dynamic" is misspelled as "dyanmic". 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 a change that fixes the misspelling of "dynamic" in bdc_core.c file. thanks. drivers/usb/gadget/udc/bdc/bdc_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/gadget/udc/bdc/bdc_core.c b/drivers/usb/gadget/udc/bdc/bdc_core.c index 35a652807fca..874122f8baa3 100644 --- a/drivers/usb/gadget/udc/bdc/bdc_core.c +++ b/drivers/usb/gadget/udc/bdc/bdc_core.c @@ -361,7 +361,7 @@ int bdc_reinit(struct bdc *bdc) return ret; } -/* Allocate all the dyanmic memory */ +/* Allocate all the dynamic memory */ static int bdc_mem_alloc(struct bdc *bdc) { u32 page_size;