Re: [PATCH 11/14] iio: temperature: tsys01: reorder headers
Jonathan Cameron <[email protected]>
| Newsgroups | org.kernel.vger.linux-iio,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <20260823185825.292eb144@jic23-huawei> |
On Sat, 22 Aug 2026 10:02:38 +0200 Joshua Crofts <[email protected]> wrote: > Sort the headers alphabetically and group the IIO headers and vendor > specific header separately. > > No functional change. > > Signed-off-by: Joshua Crofts <[email protected]> Just as a reference - this level of reorder definitely wants to be on its own as a separate patch as you have it here! Jonathan > --- > drivers/iio/temperature/tsys01.c | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) > > diff --git a/drivers/iio/temperature/tsys01.c b/drivers/iio/temperature/tsys01.c > index 28b3ce022ce7..14de67ee8be7 100644 > --- a/drivers/iio/temperature/tsys01.c > +++ b/drivers/iio/temperature/tsys01.c > @@ -8,14 +8,16 @@ > * http://www.meas-spec.com/downloads/TSYS01_Digital_Temperature_Sensor.pdf > */ > > -#include <linux/iio/iio.h> > -#include <linux/iio/sysfs.h> > #include <linux/device.h> > -#include <linux/mutex.h> > -#include <linux/module.h> > #include <linux/init.h> > #include <linux/kernel.h> > +#include <linux/module.h> > +#include <linux/mutex.h> > #include <linux/stat.h> > + > +#include <linux/iio/iio.h> > +#include <linux/iio/sysfs.h> > + > #include "../common/ms_sensors/ms_sensors_i2c.h" > > /* TSYS01 Commands */ >