From: David Lechner Date: Sat, 28 Jun 2025 17:09:26 +0000 (-0500) Subject: iio: common: hid-sensor-attributes: make unit_conversion const X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f391719dd1b8438bd7b8525575bd6130d4ba1395;p=users%2Fjedix%2Flinux-maple.git iio: common: hid-sensor-attributes: make unit_conversion const Add const qualifier to struct unit_conversion[]. This is read-only data so it can be made const. Signed-off-by: David Lechner Link: https://patch.msgid.link/20250628-iio-const-data-14-v1-1-4faa8015e122@baylibre.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/common/hid-sensors/hid-sensor-attributes.c b/drivers/iio/common/hid-sensors/hid-sensor-attributes.c index 2055a03cbeb1..a61428bfdce3 100644 --- a/drivers/iio/common/hid-sensors/hid-sensor-attributes.c +++ b/drivers/iio/common/hid-sensors/hid-sensor-attributes.c @@ -11,7 +11,7 @@ #include #include -static struct { +static const struct { u32 usage_id; int unit; /* 0 for default others from HID sensor spec */ int scale_val0; /* scale, whole number */