if (adapter->is_up != NETXEN_ADAPTER_UP_MAGIC)
                goto err_out;
 
-       if (strict_strtoul(buf, 2, &new))
+       if (kstrtoul(buf, 2, &new))
                goto err_out;
 
        if (!netxen_config_bridged_mode(adapter, !!new))
        struct netxen_adapter *adapter = dev_get_drvdata(dev);
        unsigned long new;
 
-       if (strict_strtoul(buf, 2, &new))
+       if (kstrtoul(buf, 2, &new))
                return -EINVAL;
 
        if (!!new != !!(adapter->flags & NETXEN_NIC_DIAG_ENABLED))
 
        if (!test_bit(__QLCNIC_DEV_UP, &adapter->state))
                goto err_out;
 
-       if (strict_strtoul(buf, 2, &new))
+       if (kstrtoul(buf, 2, &new))
                goto err_out;
 
        if (!qlcnic_config_bridged_mode(adapter, !!new))
        struct qlcnic_adapter *adapter = dev_get_drvdata(dev);
        unsigned long new;
 
-       if (strict_strtoul(buf, 2, &new))
+       if (kstrtoul(buf, 2, &new))
                return -EINVAL;
 
        if (!!new != !!(adapter->flags & QLCNIC_DIAG_ENABLED))