diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2020-06-09 05:01:16 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2020-06-14 15:34:19 +0200 |
commit | 25f02d3242ab4d16d0cee2dec0d89cedb3747fa9 (patch) | |
tree | 22595ba4d836db16712ca47520c96854bba07162 /drivers/iio | |
parent | iio: magnetometer: ak8974: Fix runtime PM imbalance on error (diff) | |
download | linux-25f02d3242ab4d16d0cee2dec0d89cedb3747fa9.tar.xz linux-25f02d3242ab4d16d0cee2dec0d89cedb3747fa9.zip |
iio: core: add missing IIO_MOD_H2/ETHANOL string identifiers
Add missing strings to iio_modifier_names[] for proper modification
of channels.
Fixes: b170f7d48443d (iio: Add modifiers for ethanol and H2 gases)
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/industrialio-core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c index 1527f01a44f1..352533342702 100644 --- a/drivers/iio/industrialio-core.c +++ b/drivers/iio/industrialio-core.c @@ -130,6 +130,8 @@ static const char * const iio_modifier_names[] = { [IIO_MOD_PM2P5] = "pm2p5", [IIO_MOD_PM4] = "pm4", [IIO_MOD_PM10] = "pm10", + [IIO_MOD_ETHANOL] = "ethanol", + [IIO_MOD_H2] = "h2", }; /* relies on pairs of these shared then separate */ |