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 B75951EF956; Mon, 21 Oct 2024 10:47:22 +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=1729507642; cv=none; b=OapDQAxmKIXIgHrZR1vw7Rvknt756hRSgQik9MFds3YOyGoMhP7qGifOoZ6YcQZvff8nuIAyjEQiHAteeCSF11Id8qBbl+eaX8jHDuaqH1lSVFbOK5sAzFPJ0kbKbNsabVhOjHYulXY/qdaRS1jKCB1wzkXk+shmVDuESDqjmjA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1729507642; c=relaxed/simple; bh=OyFz9agE+ElYfcT9q12U6xPZYA9AN/JcEec1kWxTvoM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=NxtA6Fb0HzNKlopSDoXA3c46JMnnofJlkFQbaCT8G0nvG277kcB8lVg+8ryuN4QjKFI05TdvF245mr6Oflkhfn+l5F7no9rCWg8zHkwfTjDPqIFt9hyN8TIXhvRGI6YqMGK9MtWkijikVpSlDGdXT624wicvi/aNX0FOYS0T8ng= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=XsoU6W63; 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="XsoU6W63" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 35DBAC4CEC3; Mon, 21 Oct 2024 10:47:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1729507642; bh=OyFz9agE+ElYfcT9q12U6xPZYA9AN/JcEec1kWxTvoM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=XsoU6W63/C62SBB4GDSvy1AscYVDoODdE8yxfpm+uUYRvm3mkJnKMXUN43qvovyxO vzyDzlJocREKFR6GW8mCswm6fQz41E7MBWVrtl92VwQQYOigum3L42H7UWvL4im3rj nYdNChTMRfITa5VdVivJoqVYX9yN5V1vmVKquLSg= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Javier Carrasco , Sean Nyekjaer , Stable@vger.kernel.org, Jonathan Cameron Subject: [PATCH 5.15 54/82] iio: adc: ti-ads8688: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig Date: Mon, 21 Oct 2024 12:25:35 +0200 Message-ID: <20241021102249.370220754@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241021102247.209765070@linuxfoundation.org> References: <20241021102247.209765070@linuxfoundation.org> User-Agent: quilt/0.67 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-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Javier Carrasco commit 4c4834fd8696a949d1b1f1c2c5b96e1ad2083b02 upstream. This driver makes use of triggered buffers, but does not select the required modules. Fixes: 2a86487786b5 ("iio: adc: ti-ads8688: add trigger and buffer support") Add the missing 'select IIO_BUFFER' and 'select IIO_TRIGGERED_BUFFER'. Signed-off-by: Javier Carrasco Reviewed-by: Sean Nyekjaer Link: https://patch.msgid.link/20241003-iio-select-v1-4-67c0385197cd@gmail.com Cc: Signed-off-by: Jonathan Cameron Signed-off-by: Greg Kroah-Hartman --- drivers/iio/adc/Kconfig | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/iio/adc/Kconfig +++ b/drivers/iio/adc/Kconfig @@ -1131,6 +1131,8 @@ config TI_ADS8344 config TI_ADS8688 tristate "Texas Instruments ADS8688" depends on SPI && OF + select IIO_BUFFER + select IIO_TRIGGERED_BUFFER help If you say yes here you get support for Texas Instruments ADS8684 and and ADS8688 ADC chips