From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mga11.intel.com ([192.55.52.93]:21700 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751807AbaATIKR (ORCPT ); Mon, 20 Jan 2014 03:10:17 -0500 Date: Mon, 20 Jan 2014 10:10:07 +0200 From: Heikki Krogerus To: Linus Walleij Cc: Chen-Yu Tsai , Mika Westerberg , Alexandre Courbot , Arnd Bergmann , linux-arm-kernel , Johannes Berg , "David S. Miller" , devicetree , netdev , linux-wireless , linux-sunxi , linux-kernel , Maxime Ripard Subject: Re: [PATCH RFC 4/6] net: rfkill: gpio: add device tree support Message-ID: <20140120081007.GA19123@xps8300> (sfid-20140120_091040_887781_74DAAE54) References: <1389941251-32692-1-git-send-email-wens@csie.org> <1389941251-32692-5-git-send-email-wens@csie.org> <201401171747.46332.arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: Sender: linux-wireless-owner@vger.kernel.org List-ID: Hi, On Sat, Jan 18, 2014 at 12:11:56AM +0100, Linus Walleij wrote: > On Fri, Jan 17, 2014 at 6:43 PM, Chen-Yu Tsai wrote: > > On Sat, Jan 18, 2014 at 12:47 AM, Arnd Bergmann wrote: > > >>> +- NAME_shutdown-gpios : GPIO phandle to shutdown control > >>> + (phandle must be the second) > >>> +- NAME_reset-gpios : GPIO phandle to reset control > >>> + > >>> +NAME must match the rfkill-name property. NAME_shutdown-gpios or > >>> +NAME_reset-gpios, or both, must be defined. > >>> + > >> > >> I don't understand this part. Why do you include the name in the > >> gpios property, rather than just hardcoding the property strings > >> to "shutdown-gpios" and "reset-gpios"? > > > > This quirk is a result of how gpiod_get_index implements device tree > > lookup. > > Why can't it just have a single property "gpios", where the first > element is the reset GPIO and the second is the shutdown GPIO? > > rfkill-gpio does this: > > gpio = devm_gpiod_get_index(&pdev->dev, rfkill->reset_name, 0); > gpio = devm_gpiod_get_index(&pdev->dev, rfkill->shutdown_name, 1); > > The passed con ID name parameter is only there for the device > tree case it seems. (ACPI ignores it.) So what about you just > don't pass it at all and patch it to do like this instead: > > gpio = devm_gpiod_get_index(&pdev->dev, NULL, 0); > gpio = devm_gpiod_get_index(&pdev->dev, NULL, 1); > > Heikki, are you OK with this change? Yes, definitely. That is much cleaner. Thanks, -- heikki