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 E46841509A5; Sat, 5 Oct 2024 17:55: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=1728150934; cv=none; b=PejmkidBSL0oOK+OVtDGWwiYZc2rD9U3kaP8imzpabiXJMc2qP5L+oY7r1a5qSl7aFOyLpcYbQUnk/fuWH4sOKTdOM0AMymm9VTo5itAT2SMCiGn9BQlsRI3pcpiAsct1DUvsYoGYIirmndYRmhOPL4qL7K8TvmVgRpbxUMSK2k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728150934; c=relaxed/simple; bh=/WXx31hwcqZxhppF0dnTXBqbKpKH5Fk6ydOfZoKtnLQ=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=N7vmAICjGvLTmbcafg/ga/Vhq5MxCBBue1VWm96/S+Sb5uN8UjQLqGxLt9BAAnH7xUe9/xMgvpjAJf2nAcXdwnepT/a8u3Ygt1+2CMKOMtc+8bjZyteaqZLRBjUiPlI5tgY0z/gNKrR4+/ERsANruU258uu0V7Cxc3KKHqwPp3g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=O0E7f0ys; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="O0E7f0ys" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 67FE5C4CEC2; Sat, 5 Oct 2024 17:55:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1728150933; bh=/WXx31hwcqZxhppF0dnTXBqbKpKH5Fk6ydOfZoKtnLQ=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=O0E7f0ysVhJkaqJQjRID/2ubB4acE/xRhxaIKb4kyFugu2MJAogNOjb7aAMIRecJy JYBrpRzLpOsaOYCzarHN6wW+rHCZFNBdPH4WMh0ezVXP680JrPy0muCSR47JCF/I8D O0p9wfusD5B+2FHfn/+WxCWZ6+zzr8w2JSg3srxQrXuPIpRH7w+cN01gHCj1lWRnk9 ejptcubeXCSIVzgL8+fW3ZrSDztgwOZZ2ItfrEr/p7wwph6kY7zVdx5JgFpOEEhP8S zz8wjzFMM5h/J5tnaf85CGWgynF+4V/zN1TjmeVChEBO2CxgqM+ZZO5w8shHe/PoS/ 2a3sfVtUxB2qw== Date: Sat, 5 Oct 2024 18:54:57 +0100 From: Jonathan Cameron To: Gustavo Silva Cc: Javier Carrasco , Lars-Peter Clausen , Matti Vaittinen , Andy Shevchenko , David Lechner , Nuno Sa , Dan Murphy , Sean Nyekjaer , Leonard =?UTF-8?B?R8O2?= =?UTF-8?B?aHJz?= , Mihail Chindris , Alexandru Ardelean , Shoji Keita , Andrey Skvortsov , Dalton Durst , Icenowy Zheng , Andreas Klinger , Jonathan Cameron , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, Ondrej Jirman Subject: Re: [PATCH 09/13] iio: chemical: ens160: add missing select IIO_(TRIGGERED_)BUFFER in Kconfig Message-ID: <20241005185457.182fb76c@jic23-huawei> In-Reply-To: References: <20241003-iio-select-v1-0-67c0385197cd@gmail.com> <20241003-iio-select-v1-9-67c0385197cd@gmail.com> X-Mailer: Claws Mail 4.3.0 (GTK 3.24.43; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-iio@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Fri, 4 Oct 2024 11:27:49 -0300 Gustavo Silva wrote: > On Thu, Oct 03, 2024 at 11:04:55PM +0200, Javier Carrasco wrote: > > This driver makes use of triggered buffers, but does not select the > > required modules. > > > > Add the missing 'select IIO_BUFFER' and 'select IIO_TRIGGERED_BUFFER'. > > > > Fixes: 0fc26596b4b3 ("iio: chemical: ens160: add triggered buffer support") > > Signed-off-by: Javier Carrasco > > Acked-by: Gustavo Silva > Applied