Re: [PATCH] iio: pressure: Arrange Makefile alphabetically

From: Jonathan Cameron
Date: Sun Nov 16 2025 - 10:22:57 EST


On Sun, 16 Nov 2025 11:48:49 +0530
Akhilesh Patil <akhilesh@xxxxxxxxxxxxx> wrote:

> Fix hp206c and st_pressure_* entries in pressure Makefiles to follow
> alphabetical order as per guideline mentioned in iio/pressure/Makefile.
>
> Fixes: 217494e5b780 ("iio:pressure: Add STMicroelectronics pressures driver")
> Fixes: fa4c9c93e93f ("hp206c: Initial support for reading sensor values")
> Signed-off-by: Akhilesh Patil <akhilesh@xxxxxxxxxxxxx>
Definitely not a fix, so fixes tags are not appropriate.

I'll drop those and apply.

Thanks,

Jonathan


> ---
> This is the follow up patch from action item on:
> Link: https://lore.kernel.org/lkml/20251023182721.00002112@xxxxxxxxxx/
> This is on top of linux-next
>
> drivers/iio/pressure/Makefile | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/iio/pressure/Makefile b/drivers/iio/pressure/Makefile
> index 47bf7656f975..a21443e992b9 100644
> --- a/drivers/iio/pressure/Makefile
> +++ b/drivers/iio/pressure/Makefile
> @@ -16,6 +16,7 @@ obj-$(CONFIG_DPS310) += dps310.o
> obj-$(CONFIG_IIO_CROS_EC_BARO) += cros_ec_baro.o
> obj-$(CONFIG_HID_SENSOR_PRESS) += hid-sensor-press.o
> obj-$(CONFIG_HP03) += hp03.o
> +obj-$(CONFIG_HP206C) += hp206c.o
> obj-$(CONFIG_HSC030PA) += hsc030pa.o
> obj-$(CONFIG_HSC030PA_I2C) += hsc030pa_i2c.o
> obj-$(CONFIG_HSC030PA_SPI) += hsc030pa_spi.o
> @@ -35,11 +36,9 @@ obj-$(CONFIG_SDP500) += sdp500.o
> obj-$(CONFIG_IIO_ST_PRESS) += st_pressure.o
> st_pressure-y := st_pressure_core.o
> st_pressure-$(CONFIG_IIO_BUFFER) += st_pressure_buffer.o
> +obj-$(CONFIG_IIO_ST_PRESS_I2C) += st_pressure_i2c.o
> +obj-$(CONFIG_IIO_ST_PRESS_SPI) += st_pressure_spi.o
> obj-$(CONFIG_T5403) += t5403.o
> -obj-$(CONFIG_HP206C) += hp206c.o
> obj-$(CONFIG_ZPA2326) += zpa2326.o
> obj-$(CONFIG_ZPA2326_I2C) += zpa2326_i2c.o
> obj-$(CONFIG_ZPA2326_SPI) += zpa2326_spi.o
> -
> -obj-$(CONFIG_IIO_ST_PRESS_I2C) += st_pressure_i2c.o
> -obj-$(CONFIG_IIO_ST_PRESS_SPI) += st_pressure_spi.o