From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752483AbdA3KnX (ORCPT ); Mon, 30 Jan 2017 05:43:23 -0500 Received: from mail.free-electrons.com ([62.4.15.54]:45937 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751979AbdA3Kmq (ORCPT ); Mon, 30 Jan 2017 05:42:46 -0500 Date: Mon, 30 Jan 2017 11:19:54 +0100 From: Boris Brezillon To: Linus Walleij Cc: Alexandre Courbot , Russell King , Brian Norris , Marek Vasut , Vinod Koul , Richard Weinberger , Nicolas Ferre , "linux-kernel@vger.kernel.org" , Wenyou Yang , "linux-gpio@vger.kernel.org" , "linux-mtd@lists.infradead.org" , Josh Wu , dmaengine@vger.kernel.org, Alexandre Belloni , Dan Williams , Hans-Christian Egtvedt , David Woodhouse , Cyrille Pitchen , "linux-arm-kernel@lists.infradead.org" , Haavard Skinnemoen Subject: Re: [PATCH 1/5] gpio: Add the devm_get_index_gpiod_from_child() helper Message-ID: <20170130111954.0f7ef130@bbrezillon> In-Reply-To: References: <1485534846-28111-1-git-send-email-boris.brezillon@free-electrons.com> <1485534846-28111-2-git-send-email-boris.brezillon@free-electrons.com> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, On Mon, 30 Jan 2017 10:49:23 +0100 Linus Walleij wrote: > On Fri, Jan 27, 2017 at 5:34 PM, Boris Brezillon > wrote: > > > devm_get_gpiod_from_child() currently allows GPIO users to request a GPIO > > that is defined in a child fwnode instead of directly in the device > > fwnode. Extend this API by adding the devm_get_index_gpiod_from_child() > > helpers which does the same except you can also specify an index in case > > the 'xx-gpios' property describe several GPIOs. > > > > Signed-off-by: Boris Brezillon > > Cc Russell who faced this problem in the mvebu PCI driver (IIRC). > > (...) > > > +struct gpio_desc *devm_get_index_gpiod_from_child(struct device *dev, > > + const char *con_id, > > + int index, > > + struct fwnode_handle *child) > > { > > static const char * const suffixes[] = { "gpios", "gpio" }; > > char prop_name[32]; /* 32 is max size of property name */ > > @@ -154,7 +157,7 @@ struct gpio_desc *devm_get_gpiod_from_child(struct device *dev, > > snprintf(prop_name, sizeof(prop_name), "%s", > > suffixes[i]); > > > > - desc = fwnode_get_named_gpiod(child, prop_name); > > + desc = fwnode_get_named_gpiod(child, prop_name, index); > > if (!IS_ERR(desc) || (PTR_ERR(desc) != -ENOENT)) > > break; > > } > > @@ -168,6 +171,23 @@ struct gpio_desc *devm_get_gpiod_from_child(struct device *dev, > > > > return desc; > > } > > +EXPORT_SYMBOL(devm_get_index_gpiod_from_child); > > Rename this devm_fwnode_get_index_gpiod_from_child() > so that it fits the namespace of the other fwnode functions. Okay. > > > + * devm_get_gpiod_from_child - get a GPIO descriptor from a device's child node > > + * @dev: GPIO consumer > > + * @con_id: function within the GPIO consumer > > + * @child: firmware node (child of @dev) > > + * > > + * GPIO descriptors returned from this function are automatically disposed on > > + * driver detach. > > + */ > > +struct gpio_desc *devm_get_gpiod_from_child(struct device *dev, > > + const char *con_id, > > + struct fwnode_handle *child) > > +{ > > + return devm_get_index_gpiod_from_child(dev, con_id, 0, child); > > +} > > Take the opportunity to rename this devm_fwnode_get_gpiod_from_child() > as well. Sure, I'll provide a separate patch renaming this function. Thanks, Boris