From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 A386241C318; Wed, 4 Feb 2026 14:57:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770217053; cv=none; b=ZqlXJRsHghsgQ4bW3VvU0duHBHpk7zniB008TCEVRihY6aPltrrfDXLSzMuT8zmp2H60u+5v4bOHvAaqnmwKNbFpShW4VJcvI6jUw8YRy5llCcMp8Zr2KJuhvim++WU2anzwVJ1w+XkSp7UNaozn9+9X+bqboqP7W0O+/q4y0pU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770217053; c=relaxed/simple; bh=6Z0pD8S3/nvxzJ9aHl3nKrHsxU1YGm6VPIRNGTwFhXA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=KRzuCg8ea5bauVJ/jc9PCb+CfsN38vsIzCoGOVTujUiR8vrKN+Z7qBZJYE6Yhske9MSWvVQV7R+q+U40urLy7sv24IsM+lqfNEiD+0r253T3O1zmLBld3d7qmCvqnFpeZDXdbVdOMEmPojG+vKpWVYj2m7PW7PGXp7CCiSv+BY8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=skD5HUCl; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="skD5HUCl" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D4317C4CEF7; Wed, 4 Feb 2026 14:57:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770217053; bh=6Z0pD8S3/nvxzJ9aHl3nKrHsxU1YGm6VPIRNGTwFhXA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=skD5HUCluII2Pp+m7fdInxiVmHwSm7RWdE6FM4KB+fR8qQihGXel6t1CVjjaMwa7O vfHIEEYDKJjhHtWXH9T8qgMvd2lSt3h6h5mLjNyCgqytoZ8uQ4HDWInHxoAeA7Gp0/ QUbBwEFiYAkyR1Lmra/KcW6fqi/i7VaRLdjuAKog= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Andreas=20K=C3=BCbrich?= , Jonathan Cameron Subject: [PATCH 5.15 110/206] iio: dac: ad5686: add AD5695R to ad5686_chip_info_tbl Date: Wed, 4 Feb 2026 15:39:01 +0100 Message-ID: <20260204143902.168640239@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143858.193781818@linuxfoundation.org> References: <20260204143858.193781818@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Kübrich, Andreas commit 441ac29923c9172bc5e4b2c4f52ae756192f5715 upstream. The chip info for this variant (I2C, four channels, 14 bit, internal reference) seems to have been left out due to oversight, so ad5686_chip_info_tbl[ID_AD5695R] is all zeroes. Initialisation of an AD5695R still succeeds, but the resulting IIO device has no channels and no /dev/iio:device* node. Add the missing chip info to the table. Fixes: 4177381b4401 ("iio:dac:ad5686: Add AD5671R/75R/94/94R/95R/96/96R support") Signed-off-by: Andreas Kübrich Cc: stable@vger.kernel.org Signed-off-by: Jonathan Cameron Signed-off-by: Greg Kroah-Hartman --- drivers/iio/dac/ad5686.c | 6 ++++++ 1 file changed, 6 insertions(+) --- a/drivers/iio/dac/ad5686.c +++ b/drivers/iio/dac/ad5686.c @@ -427,6 +427,12 @@ static const struct ad5686_chip_info ad5 .num_channels = 4, .regmap_type = AD5686_REGMAP, }, + [ID_AD5695R] = { + .channels = ad5685r_channels, + .int_vref_mv = 2500, + .num_channels = 4, + .regmap_type = AD5686_REGMAP, + }, [ID_AD5696] = { .channels = ad5686_channels, .num_channels = 4,