From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id AF9F841F7CC; Thu, 16 Jul 2026 14:01:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784210464; cv=none; b=YkBV857dJ8dAH29eAAeOnvrUIcn1TWKvbuEiIjyoccMriljruvql4VIcERjS03j6eHr830cofaix6hDSsb6FujtFt8qY/L41TyOck9F+8cc1tZy3At9RcL68WHOA1NORI6+mnk4fgcxtFpSgPGisufVbqH046X9EP3lgGQhBNm0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784210464; c=relaxed/simple; bh=5psE3hiTk+05dIVDGDI0l0Tc8fWwR8SWBxjC10zi71Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DaTMVIIR/wvhqavIGZGeU+gitASd3ZHuh9+NxPBSy15NzadZ8hMCU1rvByOihLgyTvJ2LV+WEUYnpG0oJiBKYxoI5CB+kMVuEKFVg6v+aMYRjIX4ae2tv2pPR17UrN7tPs2FSdkesH/CBrd15jFtlWG17i6OFJiNKGW/aSStl1s= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=cm5IABIj; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="cm5IABIj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 21F9A1F00A3A; Thu, 16 Jul 2026 14:01:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784210463; bh=GGtcStnEl/aiYGwYduP+WnrDkKzdaKvHdkDFoD52iUQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=cm5IABIjCbYhivuB8B6jvEZKfvuB6tYRltfVpjb0B1DAOviBnZ0YNIg1bptzDESlV T48f2fKrLWFWu+DAcOsM0Or1yCoZ2gsjLv/PSJogDr7aDowQP0Jic8ozH5O/xrMWZf QraMCFM6uhnchazOj7vbKHkFqbxKni9b6k9lp/I8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Joshua Crofts , Pengpeng Hou , Andy Shevchenko , Jonathan Cameron Subject: [PATCH 6.18 058/480] iio: adc: ti-ads124s08: Return reset GPIO lookup errors Date: Thu, 16 Jul 2026 15:26:45 +0200 Message-ID: <20260716133045.968086383@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260716133044.672218725@linuxfoundation.org> References: <20260716133044.672218725@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pengpeng Hou commit 7dc4de2aa6316f1d044cde21f5acfec5f3ec6b47 upstream. devm_gpiod_get_optional() returns NULL when the optional GPIO is absent, but returns an ERR_PTR when the GPIO provider lookup fails, including probe deferral. Probe currently logs the ERR_PTR case as if the reset GPIO were simply absent and keeps the error pointer in reset_gpio. Later ads124s_reset() treats any non-NULL reset_gpio as a valid descriptor and passes it to gpiod_set_value_cansleep(). Return the lookup error instead of retaining the ERR_PTR. Fixes: e717f8c6dfec ("iio: adc: Add the TI ads124s08 ADC code") Cc: stable@vger.kernel.org Reviewed-by: Joshua Crofts Signed-off-by: Pengpeng Hou Reviewed-by: Andy Shevchenko Signed-off-by: Jonathan Cameron Signed-off-by: Greg Kroah-Hartman --- drivers/iio/adc/ti-ads124s08.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/iio/adc/ti-ads124s08.c +++ b/drivers/iio/adc/ti-ads124s08.c @@ -321,7 +321,8 @@ static int ads124s_probe(struct spi_devi ads124s_priv->reset_gpio = devm_gpiod_get_optional(&spi->dev, "reset", GPIOD_OUT_LOW); if (IS_ERR(ads124s_priv->reset_gpio)) - dev_info(&spi->dev, "Reset GPIO not defined\n"); + return dev_err_probe(&spi->dev, PTR_ERR(ads124s_priv->reset_gpio), + "Failed to get reset GPIO\n"); ads124s_priv->chip_info = &ads124s_chip_info_tbl[spi_id->driver_data];