From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1426956AbeCBLKs (ORCPT ); Fri, 2 Mar 2018 06:10:48 -0500 Received: from atrey.karlin.mff.cuni.cz ([195.113.26.193]:33471 "EHLO atrey.karlin.mff.cuni.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1423538AbeCBLKm (ORCPT ); Fri, 2 Mar 2018 06:10:42 -0500 Date: Fri, 2 Mar 2018 12:10:40 +0100 From: Pavel Machek To: Linus Walleij Cc: Daniel Baluta , Thorsten Leemhuis , Peter Ujfalusi , Linux-ALSA , Ivajlo Dimitrov , Kevin Hilman , ext Tony Lindgren , Aaro Koskinen , kernel list , Sebastian Reichel , Martijn Braam , Filip =?utf-8?Q?Matijevi=C4=87?= , Mark Brown , =?utf-8?B?TWlja3Vsw6HFoQ==?= Qwertz , Sakari Ailus , Pali =?iso-8859-1?Q?Roh=E1r?= , clayton@craftyguy.net, Linux-OMAP , "Andrew F . Davis" , Patrik Bachan , linux-arm-kernel , serge@hallyn.com Subject: Re: [alsa-devel] regression v4.16 on Nokia N900: sound does not work Message-ID: <20180302111040.GA6344@amd> References: <20180224214617.GA22619@amd> <71aa88ec-d4df-b49c-7d73-27197f468491@leemhuis.info> <20180226131318.GA14045@amd> <20180226231336.GA18565@amd> <20180302091025.GC30267@amd> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ibTvN161/egqYuK8" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi! > > If this is taking longer to fix, should c85823390215 be reverted in > > the meantime? It does not seem particulary important/urgent... >=20 > No patience between the v4.16 release candidates eh ;) >=20 > commit 6662ae6af82df10259a70c7569b4c12ea7f3ba93 > ("gpiolib: Keep returning EPROBE_DEFER when we should") >=20 > and >=20 > commit ce27fb2c56db6ccfe8099343bb4afdab15e77e7b > ("gpio: Handle deferred probing in of_find_gpio() properly") >=20 > that are both in Torvalds' tree since yesterday should be fixing > this, I think? Did you try just using the upstream HEAD? Ok, so this code looks pretty crazy to me: I tried removing the "of_find_spi_gpio" part, and audio started working. What is going on with the ()s around =3D=3D s? You made me look up C operator precedence. Hmm, and it is also wrong, right? It turns any error code into ENOENT, as it tries to do the "special handling". * = =20 * This means we don't need to look any further for = =20 * alternate name conventions, and we should really = =20 * preserve the return code for our user to be able to = =20 * retry probing later. = =20 */ if (IS_ERR(desc) && PTR_ERR(desc) =3D=3D -EPROBE_DEFER) return desc; if (!IS_ERR(desc) || (PTR_ERR(desc) !=3D -ENOENT)) break; } /* Special handling for SPI GPIOs if used */ if (IS_ERR(desc)) desc =3D of_find_spi_gpio(dev, con_id, &of_flags); /* Special handling for regulator GPIOs if used */ if (IS_ERR(desc) && PTR_ERR(desc) !=3D -EPROBE_DEFER) desc =3D of_find_regulator_gpio(dev, con_id, &of_flags); Something like this? diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 84e5a9d..f0fab26 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -241,29 +241,17 @@ struct gpio_desc *of_find_gpio(struct device *dev, co= nst char *con_id, =20 desc =3D of_get_named_gpiod_flags(dev->of_node, prop_name, idx, &of_flags); - /* - * -EPROBE_DEFER in our case means that we found a - * valid GPIO property, but no controller has been - * registered so far. - * - * This means we don't need to look any further for - * alternate name conventions, and we should really - * preserve the return code for our user to be able to - * retry probing later. - */ - if (IS_ERR(desc) && PTR_ERR(desc) =3D=3D -EPROBE_DEFER) - return desc; =20 - if (!IS_ERR(desc) || (PTR_ERR(desc) !=3D -ENOENT)) + if (!IS_ERR(desc) || PTR_ERR(desc) !=3D -ENOENT) break; } =20 /* Special handling for SPI GPIOs if used */ - if (IS_ERR(desc)) + if (IS_ERR(desc) && PTR_ERR(desc) =3D=3D -ENOENT) desc =3D of_find_spi_gpio(dev, con_id, &of_flags); =20 /* Special handling for regulator GPIOs if used */ - if (IS_ERR(desc) && PTR_ERR(desc) !=3D -EPROBE_DEFER) + if (IS_ERR(desc) && PTR_ERR(desc) =3D=3D -ENOENT) desc =3D of_find_regulator_gpio(dev, con_id, &of_flags); =20 if (IS_ERR(desc)) --=20 (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blo= g.html --ibTvN161/egqYuK8 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iEYEARECAAYFAlqZMTAACgkQMOfwapXb+vJg6ACghqyecQDP0FhkGxHgLGCXfbsh zH4An32rHqqLEYFRCypCz8phldBl/QNL =dPk+ -----END PGP SIGNATURE----- --ibTvN161/egqYuK8--