net: can: replace strict_strtoul() with kstrtoul()
[deliverable/linux.git] / drivers / net / can / softing / softing_main.c
index 3a2b45601ec29d69f07ec4dab98425ebb09add15..65eef1eea2e2434ca47cfeb086095a415d2b385e 100644 (file)
@@ -594,7 +594,7 @@ static ssize_t store_output(struct device *dev, struct device_attribute *attr,
        unsigned long val;
        int ret;
 
-       ret = strict_strtoul(buf, 0, &val);
+       ret = kstrtoul(buf, 0, &val);
        if (ret < 0)
                return ret;
        val &= 0xFF;
This page took 0.024584 seconds and 5 git commands to generate.