2024-01-27 20:02:40

by Javier Carrasco

[permalink] [raw]
Subject: [PATCH RESEND] iio: move LIGHT_UVA and LIGHT_UVB to the end of iio_modifier

The new modifiers should have added to the end of the enum, so they do
not affect the existing entries.

No modifiers were added since then, so they can be moved safely to the
end of the list.

Move IIO_MOD_LIGHT_UVA and IIO_MOD_LIGHT_UVB to the end of iio_modifier.

Fixes: b89710bd215e ("iio: add modifiers for A and B ultraviolet light")
Suggested-by: Paul Cercueil <[email protected]>
Signed-off-by: Javier Carrasco <[email protected]>
---
include/uapi/linux/iio/types.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/uapi/linux/iio/types.h b/include/uapi/linux/iio/types.h
index 5060963707b1..f2e0b2d50e6b 100644
--- a/include/uapi/linux/iio/types.h
+++ b/include/uapi/linux/iio/types.h
@@ -91,8 +91,6 @@ enum iio_modifier {
IIO_MOD_CO2,
IIO_MOD_VOC,
IIO_MOD_LIGHT_UV,
- IIO_MOD_LIGHT_UVA,
- IIO_MOD_LIGHT_UVB,
IIO_MOD_LIGHT_DUV,
IIO_MOD_PM1,
IIO_MOD_PM2P5,
@@ -107,6 +105,8 @@ enum iio_modifier {
IIO_MOD_PITCH,
IIO_MOD_YAW,
IIO_MOD_ROLL,
+ IIO_MOD_LIGHT_UVA,
+ IIO_MOD_LIGHT_UVB,
};

enum iio_event_type {
--
2.39.2



2024-01-28 13:42:18

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH RESEND] iio: move LIGHT_UVA and LIGHT_UVB to the end of iio_modifier

On Sat, 27 Jan 2024 21:02:08 +0100
Javier Carrasco <[email protected]> wrote:

> The new modifiers should have added to the end of the enum, so they do
> not affect the existing entries.
>
> No modifiers were added since then, so they can be moved safely to the
> end of the list.
>
> Move IIO_MOD_LIGHT_UVA and IIO_MOD_LIGHT_UVB to the end of iio_modifier.
>
> Fixes: b89710bd215e ("iio: add modifiers for A and B ultraviolet light")
> Suggested-by: Paul Cercueil <[email protected]>
> Signed-off-by: Javier Carrasco <[email protected]>
Thanks for the resend.

Applied to the fixes-togreg branch of iio.git

Jonathan

> ---
> include/uapi/linux/iio/types.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/uapi/linux/iio/types.h b/include/uapi/linux/iio/types.h
> index 5060963707b1..f2e0b2d50e6b 100644
> --- a/include/uapi/linux/iio/types.h
> +++ b/include/uapi/linux/iio/types.h
> @@ -91,8 +91,6 @@ enum iio_modifier {
> IIO_MOD_CO2,
> IIO_MOD_VOC,
> IIO_MOD_LIGHT_UV,
> - IIO_MOD_LIGHT_UVA,
> - IIO_MOD_LIGHT_UVB,
> IIO_MOD_LIGHT_DUV,
> IIO_MOD_PM1,
> IIO_MOD_PM2P5,
> @@ -107,6 +105,8 @@ enum iio_modifier {
> IIO_MOD_PITCH,
> IIO_MOD_YAW,
> IIO_MOD_ROLL,
> + IIO_MOD_LIGHT_UVA,
> + IIO_MOD_LIGHT_UVB,
> };
>
> enum iio_event_type {