ethernet: Use octal not symbolic permissions
Prefer the direct use of octal for permissions. Done with checkpatch -f --types=SYMBOLIC_PERMS --fix-inplace and some typing. Miscellanea: o Whitespace neatening around these conversions. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
d61e403856
commit
d3757ba4c1
@@ -2829,9 +2829,9 @@ netxen_show_bridged_mode(struct device *dev,
|
||||
}
|
||||
|
||||
static const struct device_attribute dev_attr_bridged_mode = {
|
||||
.attr = {.name = "bridged_mode", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.show = netxen_show_bridged_mode,
|
||||
.store = netxen_store_bridged_mode,
|
||||
.attr = { .name = "bridged_mode", .mode = 0644 },
|
||||
.show = netxen_show_bridged_mode,
|
||||
.store = netxen_store_bridged_mode,
|
||||
};
|
||||
|
||||
static ssize_t
|
||||
@@ -2861,7 +2861,7 @@ netxen_show_diag_mode(struct device *dev,
|
||||
}
|
||||
|
||||
static const struct device_attribute dev_attr_diag_mode = {
|
||||
.attr = {.name = "diag_mode", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "diag_mode", .mode = 0644 },
|
||||
.show = netxen_show_diag_mode,
|
||||
.store = netxen_store_diag_mode,
|
||||
};
|
||||
@@ -3006,14 +3006,14 @@ static ssize_t netxen_sysfs_write_mem(struct file *filp, struct kobject *kobj,
|
||||
|
||||
|
||||
static const struct bin_attribute bin_attr_crb = {
|
||||
.attr = {.name = "crb", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "crb", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = netxen_sysfs_read_crb,
|
||||
.write = netxen_sysfs_write_crb,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_mem = {
|
||||
.attr = {.name = "mem", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "mem", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = netxen_sysfs_read_mem,
|
||||
.write = netxen_sysfs_write_mem,
|
||||
@@ -3142,7 +3142,7 @@ out:
|
||||
}
|
||||
|
||||
static const struct bin_attribute bin_attr_dimm = {
|
||||
.attr = { .name = "dimm", .mode = (S_IRUGO | S_IWUSR) },
|
||||
.attr = { .name = "dimm", .mode = 0644 },
|
||||
.size = sizeof(struct netxen_dimm_cfg),
|
||||
.read = netxen_sysfs_read_dimm,
|
||||
};
|
||||
|
@@ -1175,81 +1175,81 @@ static ssize_t qlcnic_83xx_sysfs_flash_write_handler(struct file *filp,
|
||||
}
|
||||
|
||||
static const struct device_attribute dev_attr_bridged_mode = {
|
||||
.attr = {.name = "bridged_mode", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.show = qlcnic_show_bridged_mode,
|
||||
.store = qlcnic_store_bridged_mode,
|
||||
.attr = { .name = "bridged_mode", .mode = 0644 },
|
||||
.show = qlcnic_show_bridged_mode,
|
||||
.store = qlcnic_store_bridged_mode,
|
||||
};
|
||||
|
||||
static const struct device_attribute dev_attr_diag_mode = {
|
||||
.attr = {.name = "diag_mode", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "diag_mode", .mode = 0644 },
|
||||
.show = qlcnic_show_diag_mode,
|
||||
.store = qlcnic_store_diag_mode,
|
||||
};
|
||||
|
||||
static const struct device_attribute dev_attr_beacon = {
|
||||
.attr = {.name = "beacon", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "beacon", .mode = 0644 },
|
||||
.show = qlcnic_show_beacon,
|
||||
.store = qlcnic_store_beacon,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_crb = {
|
||||
.attr = {.name = "crb", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "crb", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_sysfs_read_crb,
|
||||
.write = qlcnic_sysfs_write_crb,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_mem = {
|
||||
.attr = {.name = "mem", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "mem", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_sysfs_read_mem,
|
||||
.write = qlcnic_sysfs_write_mem,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_npar_config = {
|
||||
.attr = {.name = "npar_config", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "npar_config", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_sysfs_read_npar_config,
|
||||
.write = qlcnic_sysfs_write_npar_config,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_pci_config = {
|
||||
.attr = {.name = "pci_config", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "pci_config", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_sysfs_read_pci_config,
|
||||
.write = NULL,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_port_stats = {
|
||||
.attr = {.name = "port_stats", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "port_stats", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_sysfs_get_port_stats,
|
||||
.write = qlcnic_sysfs_clear_port_stats,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_esw_stats = {
|
||||
.attr = {.name = "esw_stats", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "esw_stats", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_sysfs_get_esw_stats,
|
||||
.write = qlcnic_sysfs_clear_esw_stats,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_esw_config = {
|
||||
.attr = {.name = "esw_config", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "esw_config", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_sysfs_read_esw_config,
|
||||
.write = qlcnic_sysfs_write_esw_config,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_pm_config = {
|
||||
.attr = {.name = "pm_config", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "pm_config", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_sysfs_read_pm_config,
|
||||
.write = qlcnic_sysfs_write_pm_config,
|
||||
};
|
||||
|
||||
static const struct bin_attribute bin_attr_flash = {
|
||||
.attr = {.name = "flash", .mode = (S_IRUGO | S_IWUSR)},
|
||||
.attr = { .name = "flash", .mode = 0644 },
|
||||
.size = 0,
|
||||
.read = qlcnic_83xx_sysfs_flash_read_handler,
|
||||
.write = qlcnic_83xx_sysfs_flash_write_handler,
|
||||
@@ -1276,7 +1276,7 @@ static ssize_t qlcnic_hwmon_show_temp(struct device *dev,
|
||||
}
|
||||
|
||||
/* hwmon-sysfs attributes */
|
||||
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO,
|
||||
static SENSOR_DEVICE_ATTR(temp1_input, 0444,
|
||||
qlcnic_hwmon_show_temp, NULL, 1);
|
||||
|
||||
static struct attribute *qlcnic_hwmon_attrs[] = {
|
||||
|
Reference in New Issue
Block a user