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 6A169C00528 for ; Sun, 23 Jul 2023 13:54:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229452AbjGWNyJ (ORCPT ); Sun, 23 Jul 2023 09:54:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59872 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229668AbjGWNyH (ORCPT ); Sun, 23 Jul 2023 09:54:07 -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 22DFB1B7 for ; Sun, 23 Jul 2023 06:54:06 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id AAB1E60D29 for ; Sun, 23 Jul 2023 13:54:05 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1ECB7C433C7; Sun, 23 Jul 2023 13:54:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1690120445; bh=8UmRKeIIXsCLYTpLQTebDRdHxayrX1JSrie8+aA5LIA=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=VkQRlJ4dbLqj6y2N4nbkUbHycLhOOxNp85p5uuuUFouil4ollPE1/sIvAeOPlNAxf c8p0kufk/qUOA8cSeqYkEqKLusLFPExidlJDH8N7YPitIN3NHKu8WAmbBK2qP6VUnZ A6Coj9LrX67+AX6n0w1P8S131e9d2+fvM9UwHljKBX/Md6ejcTAhLXxfu7KPGAWFoY McFeGRPGWZYVNg7FU4drMYcttHZb57FGWwOat5XevuGLN5aLdRNeZ974C4Ojo+ppng fVdx+4oDcChoU+DfNFkdkbp+Wrt0qA5z23uAcfpnXYD3fdhcoXyNG+gnx7TCF3rzAD gNIRdldZQNlhg== Message-ID: Date: Sun, 23 Jul 2023 22:54:07 +0900 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 Subject: Re: [PATCH] drivers: extcon: space required after that ',' Content-Language: en-US To: hanyu001@208suo.com, myungjoo.ham@samsung.com, cw00.choi@samsung.com Cc: linux-kernel@vger.kernel.org References: <25d422c1ac26f0c59ef10a8a2afe057b@208suo.com> From: Chanwoo Choi In-Reply-To: <25d422c1ac26f0c59ef10a8a2afe057b@208suo.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On 23. 7. 17. 18:03, hanyu001@208suo.com wrote: > This patch fixes the checkpatch.pl error: > > ./drivers/extcon/extcon.c:321: ERROR: space required after that ',' (ctx:VxV) > > Signed-off-by: maqimei <2433033762@qq.com> 'maqimei' is your name? I recommend that you can check the guide of 'submitting-patches'[1]. [1] https://www.kernel.org/doc/html/v4.17/process/submitting-patches.html Please update your name. > --- >  drivers/extcon/extcon.c | 2 +- >  1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/extcon/extcon.c b/drivers/extcon/extcon.c > index 6f7a60d..4ef4422 100644 > --- a/drivers/extcon/extcon.c > +++ b/drivers/extcon/extcon.c > @@ -318,7 +318,7 @@ static bool is_extcon_property_supported(unsigned int id, unsigned int prop) >  } > >  static int is_extcon_property_capability(struct extcon_dev *edev, > -                unsigned int id, int index,unsigned int prop) > +                unsigned int id, int index, unsigned int prop) >  { >      struct extcon_cable *cable; >      int type, ret; -- Best Regards, Samsung Electronics Chanwoo Choi