summaryrefslogtreecommitdiffstats
path: root/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
diff options
context:
space:
mode:
authorJingoo Han2013-08-20 04:31:00 +0200
committerJonathan Cameron2013-09-08 16:16:07 +0200
commite5e26dd5bb740c34c975e2ae059126ba3486a1ce (patch)
treeff5138e0044ef7f3f6c9bed9fbbeb3e10d5dbb81 /drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
parentiio: adc: Add driver for Microchip MCP3422/3/4 high resolution ADC (diff)
downloadkernel-qcow2-linux-e5e26dd5bb740c34c975e2ae059126ba3486a1ce.tar.gz
kernel-qcow2-linux-e5e26dd5bb740c34c975e2ae059126ba3486a1ce.tar.xz
kernel-qcow2-linux-e5e26dd5bb740c34c975e2ae059126ba3486a1ce.zip
staging: iio: replace strict_strto*() with kstrto*()
The usage of strict_strto*() is not preferred, because strict_strto*() is obsolete. Thus, kstrto*() should be used. Previously, there were only strict_strtol(), strict_strtoul(), strict_strtoull(), and strict_strtoll(). Thus, when converting to the variables, only long, unsigned long, unsigned long long, and long long can be used. However, kstrto*() provides various functions handling all types of variables. Therefore, the types of variables can be changed properly. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/staging/iio/trigger/iio-trig-periodic-rtc.c')
-rw-r--r--drivers/staging/iio/trigger/iio-trig-periodic-rtc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c b/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
index 79695974b1d4..48a6afa84088 100644
--- a/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
+++ b/drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
@@ -53,10 +53,10 @@ static ssize_t iio_trig_periodic_write_freq(struct device *dev,
{
struct iio_trigger *trig = to_iio_trigger(dev);
struct iio_prtc_trigger_info *trig_info = iio_trigger_get_drvdata(trig);
- unsigned long val;
+ int val;
int ret;
- ret = strict_strtoul(buf, 10, &val);
+ ret = kstrtoint(buf, 10, &val);
if (ret)
goto error_ret;