Commit d32ec551 authored by Peter Meerwald's avatar Peter Meerwald Committed by Greg Kroah-Hartman

staging: iio: change strict_strtoul() to kstrtoul() in hmc5843

Signed-off-by: default avatarPeter Meerwald <pmeerw@pmeerw.net>
Acked-by: default avatarJonathan Cameron <jic23@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0462e2bb
...@@ -202,7 +202,7 @@ static ssize_t hmc5843_set_operating_mode(struct device *dev, ...@@ -202,7 +202,7 @@ static ssize_t hmc5843_set_operating_mode(struct device *dev,
s32 status; s32 status;
int error; int error;
mutex_lock(&data->lock); mutex_lock(&data->lock);
error = strict_strtoul(buf, 10, &operating_mode); error = kstrtoul(buf, 10, &operating_mode);
if (error) { if (error) {
count = error; count = error;
goto exit; goto exit;
...@@ -275,7 +275,7 @@ static ssize_t hmc5843_set_measurement_configuration(struct device *dev, ...@@ -275,7 +275,7 @@ static ssize_t hmc5843_set_measurement_configuration(struct device *dev,
struct i2c_client *client = to_i2c_client(indio_dev->dev.parent); struct i2c_client *client = to_i2c_client(indio_dev->dev.parent);
struct hmc5843_data *data = iio_priv(indio_dev); struct hmc5843_data *data = iio_priv(indio_dev);
unsigned long meas_conf = 0; unsigned long meas_conf = 0;
int error = strict_strtoul(buf, 10, &meas_conf); int error = kstrtoul(buf, 10, &meas_conf);
if (error) if (error)
return error; return error;
mutex_lock(&data->lock); mutex_lock(&data->lock);
...@@ -425,7 +425,7 @@ static ssize_t set_range(struct device *dev, ...@@ -425,7 +425,7 @@ static ssize_t set_range(struct device *dev,
unsigned long range = 0; unsigned long range = 0;
int error; int error;
mutex_lock(&data->lock); mutex_lock(&data->lock);
error = strict_strtoul(buf, 10, &range); error = kstrtoul(buf, 10, &range);
if (error) { if (error) {
count = error; count = error;
goto exit; goto exit;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment