staging: iio: change strict_strtoul() to kstrtoul() in hmc5843
authorPeter Meerwald <pmeerw@pmeerw.net>
Wed, 16 May 2012 16:22:04 +0000 (18:22 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 16 May 2012 20:27:16 +0000 (13:27 -0700)
Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/iio/magnetometer/hmc5843.c

index 9eac2f11c1e69e67dbf1df28b5185586009b69fd..3e6e8c02296480e9a500c4227ecb24adf604f049 100644 (file)
@@ -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;
@@ -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 hmc5843_data *data = iio_priv(indio_dev);
        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);
@@ -425,7 +425,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;