From mboxrd@z Thu Jan 1 00:00:00 1970 From: Benoit Parrot Subject: Re: [Patch v5 2/2] gpio: Document GPIO hogging mechanism Date: Tue, 13 Jan 2015 12:38:10 -0600 Message-ID: <20150113183810.GG5834@ti.com> References: <1419019671-25377-1-git-send-email-bparrot@ti.com> <1419019671-25377-3-git-send-email-bparrot@ti.com> <20150112163902.GE5834@ti.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Return-path: Received: from bear.ext.ti.com ([192.94.94.41]:40237 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752463AbbAMSiU (ORCPT ); Tue, 13 Jan 2015 13:38:20 -0500 Content-Disposition: inline In-Reply-To: Sender: linux-gpio-owner@vger.kernel.org List-Id: linux-gpio@vger.kernel.org To: Alexandre Courbot Cc: Linus Walleij , "linux-gpio@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "devicetree@vger.kernel.org" , Maxime Ripard , Jiri Prchal , Pantelis Antoniou , Arend van Spriel Alexandre Courbot wrote on Tue [2015-Jan-13 06:43:33 +0900]: > On Tue, Jan 13, 2015 at 1:39 AM, Benoit Parrot wrote: > > Linus Walleij wrote on Mon [2015-Jan-12 11:20:14 +0100]: > >> On Fri, Dec 19, 2014 at 9:07 PM, Benoit Parrot wrote: > >> > >> > Add GPIO hogging documentation to gpio.txt > >> > > >> > Signed-off-by: Benoit Parrot > >> > Reviewed-by: Alexandre Courbot > >> > >> This is starting to look good ... > >> > >> > + line_b { > >> > + gpio-hog; > >> > + gpios = <6 0>; > >> > + state = "output-low"; > >> > >> I don't like the state string. > >> > >> Instead have boolean properties for all states. > >> > >> line_b { > >> gpio-hog; > >> gpios = <6 0>; > >> output-low; > >> line-name = "foo-bar-gpio"; > >> } > >> > >> Then use of_property_read_bool() in the code to check which > >> state is to be selected intially. You can check that no mutually > >> exclusive state are selected, I don't like that an arbitrary string > >> select the state like that, if we do it that way an enumerator would > >> be better, I prefer bools. > > > > I am sorry but that is how it was originally in the first patch. > > Alexandre's review comment suggested this method in [1] and [2] (below). > > > > Alexandre, any comments? > > > > [1] http://marc.info/?l=linux-gpio&m=141456662426151&w=2 > > > > [2] http://marc.info/?l=linux-gpio&m=141715982424744&w=2 > > When Linus and I are in conflict, follow Linus. Arnd's suggestion of > having enums defined in (IIUC) include/dt-bindings/gpio and using them > sounds good to me too and might make everyone happy (no possibility of > conflicting definitions + no strings). Linus, could you comment on it? Understood. Now given Linus prefers the bools that is the direction I am going to follow.