Change strict_strtoul() to kstrtoul() to make checkpatch.pl happy Signed-off-by: Leed Aguilar <leed.aguilar@xxxxxx> Cc: Jonathan Cameron <jic23@xxxxxxxxxx> Cc: Lars-Peter Clausen <lars@xxxxxxxxxx> --- drivers/staging/iio/magnetometer/hmc5843.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/iio/magnetometer/hmc5843.c b/drivers/staging/iio/magnetometer/hmc5843.c index 6dc0ad6..a993bc5 100644 --- a/drivers/staging/iio/magnetometer/hmc5843.c +++ b/drivers/staging/iio/magnetometer/hmc5843.c @@ -202,7 +202,7 @@ static ssize_t hmc5843_set_operating_mode(struct device *dev, s32 status; int error; mutex_lock(&data->lock); - error = strict_strtoul(buf, 10, &operating_mode); + error = kstrtoul(buf, 10, &operating_mode); if (error) { count = error; goto exit; @@ -274,7 +274,7 @@ static ssize_t hmc5843_set_measurement_configuration(struct device *dev, struct i2c_client *client = to_i2c_client(indio_dev->dev.parent); struct hmc5843_data *data = i2c_get_clientdata(client); unsigned long meas_conf = 0; - int error = strict_strtoul(buf, 10, &meas_conf); + int error = kstrtoul(buf, 10, &meas_conf); if (error) return error; mutex_lock(&data->lock); @@ -423,7 +423,7 @@ static ssize_t set_range(struct device *dev, unsigned long range = 0; int error; mutex_lock(&data->lock); - error = strict_strtoul(buf, 10, &range); + error = kstrtoul(buf, 10, &range); if (error) { count = error; goto exit; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html