diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2022-04-09 13:58:12 +0300 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2022-04-28 21:22:54 +0300 |
commit | 74f582ec127e3b10aec71e8d15f1c14b0f0481ec (patch) | |
tree | 7257979b09586c1be3e0d3d3b7f4c9e5b9a20d33 /drivers/iio/adc/ad7280a.c | |
parent | ac3e62f51b3fbda78a44fff62ece8f11d8f08a25 (diff) | |
download | linux-74f582ec127e3b10aec71e8d15f1c14b0f0481ec.tar.xz |
iio: Replace strtobool() with kstrtobool()
strtobool() is deprecated and just a wrapper around kstrtobool().Replace
it with kstrtobool() so the deprecated function can be removed eventually.
Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20220409105812.2113895-1-lars@metafoo.de
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/adc/ad7280a.c')
-rw-r--r-- | drivers/iio/adc/ad7280a.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/ad7280a.c b/drivers/iio/adc/ad7280a.c index ef9d27759961..2834e9d0aa28 100644 --- a/drivers/iio/adc/ad7280a.c +++ b/drivers/iio/adc/ad7280a.c @@ -488,7 +488,7 @@ static ssize_t ad7280_store_balance_sw(struct iio_dev *indio_dev, bool readin; int ret; - ret = strtobool(buf, &readin); + ret = kstrtobool(buf, &readin); if (ret) return ret; |