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 7E2EEEB64DD for ; Thu, 3 Aug 2023 15:34:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237148AbjHCPe0 (ORCPT ); Thu, 3 Aug 2023 11:34:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57994 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234011AbjHCPeY (ORCPT ); Thu, 3 Aug 2023 11:34:24 -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 8A80530FD for ; Thu, 3 Aug 2023 08:34:23 -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) server-digest SHA256) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 1A6BB61DF3 for ; Thu, 3 Aug 2023 15:34:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 13DF2C433C7; Thu, 3 Aug 2023 15:34:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1691076862; bh=k2Q2kzKc4w5/3WyCK184qMxzuKS8w6SPNkUd/1bs6+E=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=XEfUTpmbfGgW+yjDD6BjbYqQnfNK6HZ8PR07HpV1ggOu77N7HpMAGLAHZo8A8R0Rx cdBq07WABERx/FWggQ/51et6okdTT5wR6yy1OjTLXJ2B0uWzGFfR22iTlM9sIjzbFr L6WJ7ctpk5vuXk8lTAqS5q2/yoB4UJ+8d1T3AKI8= Date: Thu, 3 Aug 2023 17:34:19 +0200 From: Greg Kroah-Hartman To: Pavan Bobba Cc: Forest Bond , Michael Straube , Philipp Hortmann , outreachy@lists.linux.dev, inux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2] staging: vt6655: replace camel case by snake case Message-ID: <2023080302-veteran-postbox-b6e1@gregkh> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Aug 03, 2023 at 08:57:31PM +0530, Pavan Bobba wrote: > Replace array name of camel case by snake case. Issue found > by checkpatch > > Signed-off-by: Pavan Bobba > --- > drivers/staging/vt6655/baseband.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c > index 0e135af8316b..8b913c64845c 100644 > --- a/drivers/staging/vt6655/baseband.c > +++ b/drivers/staging/vt6655/baseband.c > @@ -499,7 +499,7 @@ static const unsigned char by_vt3253_init_tab_rfmd[CB_VT3253_INIT_FOR_RFMD][2] = > }; > > #define CB_VT3253B0_INIT_FOR_RFMD 256 > -static const unsigned char byVT3253B0_RFMD[CB_VT3253B0_INIT_FOR_RFMD][2] = { > +static const unsigned char byvt3253b0_rfmd[CB_VT3253B0_INIT_FOR_RFMD][2] = { > {0x00, 0x31}, > {0x01, 0x00}, > {0x02, 0x00}, > @@ -2005,8 +2005,8 @@ bool bb_vt3253_init(struct vnt_private *priv) > } else { > for (ii = 0; ii < CB_VT3253B0_INIT_FOR_RFMD; ii++) > result &= bb_write_embedded(priv, > - byVT3253B0_RFMD[ii][0], > - byVT3253B0_RFMD[ii][1]); > + byvt3253b0_rfmd[ii][0], > + byvt3253b0_rfmd[ii][1]); > > for (ii = 0; ii < CB_VT3253B0_AGC_FOR_RFMD2959; ii++) > result &= bb_write_embedded(priv, > -- > 2.34.1 > Hi, This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him a patch that has triggered this response. He used to manually respond to these common problems, but in order to save his sanity (he kept writing the same thing over and over, yet to different people), I was created. Hopefully you will not take offence and will fix the problem in your patch and resubmit it so that it can be accepted into the Linux kernel tree. You are receiving this message because of the following common error(s) as indicated below: - This looks like a new version of a previously submitted patch, but you did not list below the --- line any changes from the previous version. Please read the section entitled "The canonical patch format" in the kernel file, Documentation/process/submitting-patches.rst for what needs to be done here to properly describe this. If you wish to discuss this problem further, or you have questions about how to resolve this issue, please feel free to respond to this email and Greg will reply once he has dug out from the pending patches received from other developers. thanks, greg k-h's patch email bot