From mboxrd@z Thu Jan 1 00:00:00 1970 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 7A2B5C04A68 for ; Wed, 27 Jul 2022 08:40:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230023AbiG0Ikl (ORCPT ); Wed, 27 Jul 2022 04:40:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57296 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229449AbiG0Ikk (ORCPT ); Wed, 27 Jul 2022 04:40:40 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5A8C3459BB; Wed, 27 Jul 2022 01:40:40 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id D601561703; Wed, 27 Jul 2022 08:40:39 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EC1A9C433D6; Wed, 27 Jul 2022 08:40:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1658911239; bh=oyw8/wG+87s3/gqEcOnanDmQcIR3EM6OYA1kX1WL54w=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Y9/nV02URDuUYQyW6JLWFSJr6WqkUqvgfzCtT5cr/QR3MqecFw5IcwHjxHROUiBUn gEhaFp8lPcPNqgSHfQnSATYNFvwMhwUb+CTl0PA0jdLYPbBjpWfBc9VULMVUfRFB7I as+Zw6ek3tORbxGUALLehk+IhY0G7dwsXToD4lbci6HzEk3YDxLqHF2RRRQtVRLvaF taQiqtewxhOJ2fU/x/SC3tCZrSc6WMoej4DJLrOFSeM9buyqGsd/LNOEcMsyXP2Gd/ JJfg1ljt10ZFI8P1QZiI1aHqTd+E494TAf5oYfU2ll7AH9/GIJz9/I3ZTxmtiG2kQl IGpLmWnJpWxbg== Date: Wed, 27 Jul 2022 16:40:33 +0800 From: Peter Chen To: Jilin Yuan Cc: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] usb/chipidea: fix repeated words in comments Message-ID: <20220727084033.GB269370@nchen-desktop> References: <20220716131630.33151-1-yuanjilin@cdjrlc.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220716131630.33151-1-yuanjilin@cdjrlc.com> Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org On 22-07-16 21:16:30, Jilin Yuan wrote: > Delete the redundant word 'power'. > > Signed-off-by: Jilin Yuan > --- > drivers/usb/chipidea/otg_fsm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/usb/chipidea/otg_fsm.c b/drivers/usb/chipidea/otg_fsm.c > index 6ed4b00dba96..61b157b9c662 100644 > --- a/drivers/usb/chipidea/otg_fsm.c > +++ b/drivers/usb/chipidea/otg_fsm.c > @@ -459,7 +459,7 @@ static void ci_otg_drv_vbus(struct otg_fsm *fsm, int on) > struct ci_hdrc *ci = container_of(fsm, struct ci_hdrc, fsm); > > if (on) { > - /* Enable power power */ > + /* Enable power */ > hw_write(ci, OP_PORTSC, PORTSC_W1C_BITS | PORTSC_PP, > PORTSC_PP); > if (ci->platdata->reg_vbus) { > -- Acked-by: Peter Chen -- Thanks, Peter Chen