From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935816AbeCAINv convert rfc822-to-8bit (ORCPT ); Thu, 1 Mar 2018 03:13:51 -0500 Received: from mail.bootlin.com ([62.4.15.54]:60747 "EHLO mail.bootlin.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935665AbeCAINt (ORCPT ); Thu, 1 Mar 2018 03:13:49 -0500 Date: Thu, 1 Mar 2018 09:13:47 +0100 From: =?UTF-8?B?TXlsw6huZQ==?= Josserand To: Fabio Estevam Cc: Liam Girdwood , Mark Brown , Rob Herring , Mark Rutland , Jaroslav Kysela , Takashi Iwai , alsa-devel@alsa-project.org, "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" , linux-kernel , alexandre.belloni@bootlin.com, Thomas Petazzoni Subject: Re: [PATCH v1 3/4] ASoC: codecs: pcm179x: Add reset gpio Message-ID: <20180301091347.6575e621@dell-desktop.home> In-Reply-To: References: <20180227212433.2189-1-mylene.josserand@bootlin.com> <20180227212433.2189-4-mylene.josserand@bootlin.com> Organization: Bootlin X-Mailer: Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello Fabio, Thank you for the review! On Tue, 27 Feb 2018 19:30:11 -0300 Fabio Estevam wrote: > On Tue, Feb 27, 2018 at 6:24 PM, Mylène Josserand > wrote: > > > + pcm179x->reset = of_get_named_gpio(np, "reset-gpios", 0); > > + if (gpio_is_valid(pcm179x->reset)) { > > + ret = devm_gpio_request_one(dev, pcm179x->reset, > > + GPIOF_OUT_INIT_LOW, > > + "pcm179x reset"); > > + if (ret) { > > + dev_err(dev, > > + "Failed to request GPIO %d as reset pin, error %d\n", > > + pcm179x->reset, ret); > > + return ret; > > + } > > + > > + gpio_set_value(pcm179x->reset, 1); > > It would be better to use the gpiod API, which takes the GPIO polarity > into account. > > There may be systems that have an inverter connected to this pin, and > this can be changed in dts via GPIO_ACTIVE_HIGH. Oh, true, I should have used gpiod. Thanks for pointing me out. > > Also, as the reset pin can be connected to an I2C expander, for > example, so it is safer to use the cansleep variant: > > gpiod_set_value_cansleep(pcm179x->reset, 0); Sure, I will update it. Thanks, Mylène -- Mylène Josserand, Bootlin (formerly Free Electrons) Embedded Linux and Kernel engineering http://bootlin.com