]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/s390/scsi/zfcp_sysfs.c
[SCSI] zfcp: cleanup use of obsolete strict_strto* functions
[karo-tx-linux.git] / drivers / s390 / scsi / zfcp_sysfs.c
index 3f01bbf0609f6fb854911da5d9c0261271b184be..091c4a42ee20d06604c6bae3b50683b53e25b850 100644 (file)
@@ -95,7 +95,7 @@ static ssize_t zfcp_sysfs_port_failed_store(struct device *dev,
        struct zfcp_port *port = container_of(dev, struct zfcp_port, dev);
        unsigned long val;
 
-       if (strict_strtoul(buf, 0, &val) || val != 0)
+       if (kstrtoul(buf, 0, &val) || val != 0)
                return -EINVAL;
 
        zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_RUNNING);
@@ -134,7 +134,7 @@ static ssize_t zfcp_sysfs_unit_failed_store(struct device *dev,
        unsigned long val;
        struct scsi_device *sdev;
 
-       if (strict_strtoul(buf, 0, &val) || val != 0)
+       if (kstrtoul(buf, 0, &val) || val != 0)
                return -EINVAL;
 
        sdev = zfcp_unit_sdev(unit);
@@ -184,7 +184,7 @@ static ssize_t zfcp_sysfs_adapter_failed_store(struct device *dev,
        if (!adapter)
                return -ENODEV;
 
-       if (strict_strtoul(buf, 0, &val) || val != 0) {
+       if (kstrtoul(buf, 0, &val) || val != 0) {
                retval = -EINVAL;
                goto out;
        }
@@ -236,7 +236,7 @@ static ssize_t zfcp_sysfs_port_remove_store(struct device *dev,
        if (!adapter)
                return -ENODEV;
 
-       if (strict_strtoull(buf, 0, (unsigned long long *) &wwpn))
+       if (kstrtoull(buf, 0, (unsigned long long *) &wwpn))
                goto out;
 
        port = zfcp_get_port_by_wwpn(adapter, wwpn);
@@ -297,7 +297,7 @@ static ssize_t zfcp_sysfs_unit_add_store(struct device *dev,
        u64 fcp_lun;
        int retval;
 
-       if (strict_strtoull(buf, 0, (unsigned long long *) &fcp_lun))
+       if (kstrtoull(buf, 0, (unsigned long long *) &fcp_lun))
                return -EINVAL;
 
        retval = zfcp_unit_add(port, fcp_lun);
@@ -315,7 +315,7 @@ static ssize_t zfcp_sysfs_unit_remove_store(struct device *dev,
        struct zfcp_port *port = container_of(dev, struct zfcp_port, dev);
        u64 fcp_lun;
 
-       if (strict_strtoull(buf, 0, (unsigned long long *) &fcp_lun))
+       if (kstrtoull(buf, 0, (unsigned long long *) &fcp_lun))
                return -EINVAL;
 
        if (zfcp_unit_remove(port, fcp_lun))