From: "Maxwell Doose" <maxwell@maxwelld.cc>
To: "Jonathan Cameron" <jic23@kernel.org>,
"Andy Shevchenko" <andriy.shevchenko@linux.intel.com>
Cc: "Joshua Crofts" <joshua.crofts1@gmail.com>,
"Maxwell Doose" <maxwell@maxwelld.cc>,
"Andy Shevchenko" <andy.shevchenko@gmail.com>,
"Sakari Ailus" <sakari.ailus@linux.intel.com>,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
"Marius Cristea" <marius.cristea@microchip.com>,
"David Lechner" <dlechner@baylibre.com>,
"Nuno Sá" <nuno.sa@analog.com>,
"Andy Shevchenko" <andy@kernel.org>,
"Tomasz Duszynski" <tduszyns@gmail.com>,
"Jean-Baptiste Maneyrol" <jean-baptiste.maneyrol@tdk.com>
Subject: Re: [PATCH v1 1/4] iio: light: Unshadow error codes in ->store()
Date: Mon, 17 Aug 2026 14:12:56 -0500 [thread overview]
Message-ID: <DKRGHVP0FO9A.1VS4B0R21J97C@maxwelld.cc> (raw)
In-Reply-To: <20260817035414.496912f4@jic23-huawei>
On Sun Aug 16, 2026 at 9:54 PM CDT
Jonathan Cameron <jic23@kernel.org> wrote:
> On Fri, 14 Aug 2026 11:50:57 +0300
> Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote:
>
>> On Fri, Aug 14, 2026 at 10:25:32AM +0200, Joshua Crofts wrote:
>> > On Fri, 14 Aug 2026 at 10:16, Andy Shevchenko
>> > <andriy.shevchenko@linux.intel.com> wrote:
>> > > On Thu, Aug 13, 2026 at 09:47:00PM -0500, Maxwell Doose wrote:
>> > > > On Thu Aug 13, 2026 at 3:47 PM CDT
>> > > > Andy Shevchenko <andy.shevchenko@gmail.com> wrote:
>> > > > > On Thu, Aug 13, 2026 at 8:52 PM Maxwell Doose <maxwell@maxwelld.cc> wrote:
>>
>> ...
>>
>> > > > > Note, that kernel.h shouldn't be there at all, but that is definitely out
>> > > > > of scope here.
>> > > >
>> > > > Makes sense. I wonder if it may be worth doing a patch series removing
>> > > > all of the kernel.h inclusions in IIO all at once (or maybe some drivers
>> > > > have a legitimate use for it, but that seems highly unlikely).
>> > >
>> > > Yes, for sure! I have simply had no time to do it myself, but I have a low-prio
>> > > item in my always grown TODO list. So, if you do that, I will really appreciate!
>> > > But be careful, the actual patches should care about the whole bunch of the
>> > > inclusions, and not just about kernel.h. This means each driver should be
>> > > carefully inspected in accordance with the IWYU principles.
>> >
>> > This will be a gruelling task (implementing and reviewing), but perhaps it
>> > would be easier to do one sensor type at a time instead of the entire
>> > subsystem.
> Absolutely. One patch per driver for this and not more than 10 ish
> drivers in a series or out for review at a tiem. This stuff is still quite
> tricky to review, even with details on why each header change below the ---
>
> Also precursor patches for any significant reordering to put them in alphabetical
> + block for IIO headers just to make it easier to read the patch that cleans
> up what is included.
>
> I've done some of these as have many others. It's worthy work but slow to
> do! I'd suggest we leave it as a newbie task, but it requires more understanding
> than typical for one of those - so if you want to take it on (probably take
> a year or more to finish given review bandwidth!) then that would be most
> welcome.
>
What we ought to do is start by removing all of the kernel.h inclusions
and then we can go into each individual driver and do IWYU on them. Not
sure if we want all of the IWYU stuff (including kernel.h removal)
rolled up into one patch per driver or if we want to split patches into
kernel.h removal and then IWYU (hopefully this time I can get iwyu-tool
setup so it won't be *as* gruelling). Or in the case of we leave it as a
newbie task maybe we just add it to the TODO (since this is probably one
of those things that happens over time when we revisit drivers).
thanks,
max
>>
>> I would start from the easy cases where kernel.h is just not used at all (not
>> even as a "proxy" header). Then continue with the rest.
>
> yeah - if there are cheap ones were we can just drop it and now do the
> rest of the work then I don't mind seeing those on their own.
>
> Jonathan
>>
>> Joshua, note, it's only about the drivers that have explicit kernel.h
>> inclusion. In general the entire IIO needs to be revisited, indeed.
>>
>> $ git grep -n -lw linux/kernel.h -- drivers/iio/ | wc -l
>> 234
>>
>> $ git ls-files | grep ^drivers/iio/.*\.c$ | wc -l
>> 707
>>
next prev parent reply other threads:[~2026-08-17 19:13 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-13 7:16 [PATCH v1 0/4] iio: Unshadow error codes in ->store() Andy Shevchenko
2026-08-13 7:16 ` [PATCH v1 1/4] iio: light: " Andy Shevchenko
2026-08-13 17:51 ` Maxwell Doose
2026-08-13 20:47 ` Andy Shevchenko
2026-08-14 2:47 ` Maxwell Doose
2026-08-14 8:14 ` Andy Shevchenko
2026-08-14 8:25 ` Joshua Crofts
2026-08-14 8:50 ` Andy Shevchenko
2026-08-17 2:54 ` Jonathan Cameron
2026-08-17 19:12 ` Maxwell Doose [this message]
2026-08-18 14:11 ` Joshua Crofts
2026-08-22 0:42 ` Jonathan Cameron
2026-08-13 7:16 ` [PATCH v1 2/4] iio: imu: inv_mpu6050: " Andy Shevchenko
2026-08-13 17:57 ` Maxwell Doose
2026-08-13 20:48 ` Andy Shevchenko
2026-08-13 7:16 ` [PATCH v1 3/4] iio: chemical: sps30: " Andy Shevchenko
2026-08-13 17:53 ` Maxwell Doose
2026-08-13 7:16 ` [PATCH v1 4/4] iio: adc: pac1934: " Andy Shevchenko
2026-08-13 12:17 ` Marius.Cristea
2026-08-13 17:54 ` Maxwell Doose
2026-08-22 1:19 ` [PATCH v1 0/4] iio: " Jonathan Cameron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DKRGHVP0FO9A.1VS4B0R21J97C@maxwelld.cc \
--to=maxwell@maxwelld.cc \
--cc=andriy.shevchenko@linux.intel.com \
--cc=andy.shevchenko@gmail.com \
--cc=andy@kernel.org \
--cc=dlechner@baylibre.com \
--cc=jean-baptiste.maneyrol@tdk.com \
--cc=jic23@kernel.org \
--cc=joshua.crofts1@gmail.com \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marius.cristea@microchip.com \
--cc=nuno.sa@analog.com \
--cc=sakari.ailus@linux.intel.com \
--cc=tduszyns@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.