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 80E3833F59E; Sat, 4 Jul 2026 23:48:35 +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=1783208916; cv=none; b=SRy+kWvfY/7Bo9VWn/EN9rBG8pGLpb7ra7ci0tfug38e6ps6zM6Wlcg0yT6zlUU2tCx4rXumKfYedNcKvOiqULKjIAL8fiyL5wsG1qNmZIhOIKtfdL3QNEFtjHy+OZ0j8+Nm2HBi2WE3okArcd5M2g3RaCfsPFDRq8vtugGN0OE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783208916; c=relaxed/simple; bh=Nc8GtcpQDANqdQMg662dOMSXMS/QcG1iFiw/XjMOiXg=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=nEoVCVmCEZZdQ5AZ/BSJw1BY5foPNxoMmC5IdbWNRcfhNxOE6xF3eV/yGb06WMmTqpnamjVlK3DNc4iKJ4qJa5mXymuK7kpemTqvcHvzObcpMgyiuJNdWbE2u++b8by0DYPrKk2z71zI4nKXsXKPRRd7rdl19jYZzCjDZP94ilQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=hB63EwOa; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="hB63EwOa" Received: by smtp.kernel.org (Postfix) with ESMTPSA id ADA9D1F000E9; Sat, 4 Jul 2026 23:48:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1783208915; bh=O0iLzdEV4qnu4OqqfS+8ihWlYCwjBEzvuv+WkZgE8oU=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=hB63EwOa3jVrLolQtEP3Dg9WOgt4YdmiLTaNgDdbG5a3oQQ7AV2trjBMOZiVaJmO/ 4Fd8ZzLhh6mgHo7LLKN0axxHzdsRLSCz6XkV2zwv7f5BXfv6dmxRz77xfEJpFzLFYc FosJeb3T9SUFTwnntEK9crN8uc7pzipHHgY79+cjnx3RBcWl6Z30s8LppIRAheIn0E OP1/BQPN81BuTKxkHs+AjbdMSydvTT/p5ZZnI8pei24YAcQDeH2fk7WpDfndqdBLTR Tcczu9mhj94V0iSS8jgfDw5EmgW5cK5LOhRTLSU8jaeuxIpMQGwukvnSXiR/csE//6 RCGCGgqLkjteQ== Date: Sun, 5 Jul 2026 00:48:32 +0100 From: Jonathan Cameron To: Marcelo Schmitt Cc: , , , , , , , , , , , Subject: Re: [PATCH v5 3/4] iio: adc: ltc2378: Enable high-speed data capture Message-ID: <20260705004832.60661c48@jic23-huawei> In-Reply-To: References: X-Mailer: Claws Mail 4.4.0 (GTK 3.24.52; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: devicetree@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 Thu, 2 Jul 2026 18:45:49 -0300 Marcelo Schmitt wrote: > Make use of SPI transfer offloading to speed up data capture, enabling data > acquisition at faster sample rates (up to 2 MSPS). > > Signed-off-by: Marcelo Schmitt > diff --git a/drivers/iio/adc/ltc2378.c b/drivers/iio/adc/ltc2378.c > index b5cf2e974dac..b25602d91bbe 100644 > --- a/drivers/iio/adc/ltc2378.c > +++ b/drivers/iio/adc/ltc2378.c > @@ -12,16 +12,28 @@ > #include > #include > #include > +#include > #include > #include > #include > +#include > #include > +#include > +#include > +#include > #include > #include > > +#include > +#include > #include > +#include I'm probably missing something. Why this include? Jonathan