From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id EDCD772 for ; Tue, 28 Sep 2021 04:43:05 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 074D161153; Tue, 28 Sep 2021 04:43:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1632804184; bh=4PWPaxkWVDJgHf9CECpBwrvksA5D5ixImo5ByqYDQR8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=J7WooI0peHLV6xAfbcCQ7NN40bcf4xPYX24vqVOIqIMS7TlrV5LDTU6sDFzio6Ni6 iHzaWVT6ENzaHXbx/fsWmERgUHuraSmCwH+KqHm/3JhM8eOJav00HICrPNgxiWzAtQ SvkGa+E9dh9UqlxSTKCqH1FPDwT95ytne9HXUKa4= Date: Tue, 28 Sep 2021 06:43:00 +0200 From: Greg Kroah-Hartman To: Tommaso Merciai Cc: Forest Bond , Lucas Henneman , Yujia Qiao , Madhumitha Prabakaran , Marcos Antonio de Jesus Filho , Aldas =?utf-8?B?VGFyYcWha2V2acSNaXVz?= , "Gustavo A. R. Silva" , Deepak R Varma , linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org Subject: Re: [PATCH v5 1/3] staging: vt6655: fix camelcase in bShortSlotTime Message-ID: References: <20210926162527.21462-1-tomm.merciai@gmail.com> <20210926162527.21462-2-tomm.merciai@gmail.com> <20210927213515.GA6953@tom-desktop> Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210927213515.GA6953@tom-desktop> On Mon, Sep 27, 2021 at 11:35:15PM +0200, Tommaso Merciai wrote: > On Mon, Sep 27, 2021 at 05:26:14PM +0200, Greg Kroah-Hartman wrote: > > On Sun, Sep 26, 2021 at 06:25:18PM +0200, Tommaso Merciai wrote: > > > Replace camel case variable bShortSlotTime with snake case > > > variable b_short_slot_time. > > > > That is a very odd variable name. Why did you pick that one? > > > > What deos it mean? > > > > You do understand where the original naming format came from here, and > > what it was trying to represent, right? If not, please go read up on > > it: > > https://en.wikipedia.org/wiki/Hungarian_notation > > > > That style is not used in Linux, and so, when converting from it, do not > > attempt to keep the same style present here, that is kind of pointless, > > don't you agree? > > You are definitely right. What do you think about "short_slot_time"? "time" implies that this will hold a value of time, right? What exactly does this variable do? That might help in naming it better. thanks, greg k-h