Commit 2a4542e5 authored by Srinivas Kandagatla's avatar Srinivas Kandagatla Committed by Greg Kroah-Hartman

nvmem: core: cleanup old eeprom compat entry attributes

file permission are derived based on various configs for
default nvmem sysfs file, reuse it to create the eeprom
compat file too.
Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20200417121306.23121-1-srinivas.kandagatla@linaro.orgSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3871fdfd
...@@ -167,11 +167,8 @@ static ssize_t bin_attr_nvmem_write(struct file *filp, struct kobject *kobj, ...@@ -167,11 +167,8 @@ static ssize_t bin_attr_nvmem_write(struct file *filp, struct kobject *kobj,
return count; return count;
} }
static umode_t nvmem_bin_attr_is_visible(struct kobject *kobj, static umode_t nvmem_bin_attr_get_umode(struct nvmem_device *nvmem)
struct bin_attribute *attr, int i)
{ {
struct device *dev = container_of(kobj, struct device, kobj);
struct nvmem_device *nvmem = to_nvmem_device(dev);
umode_t mode = 0400; umode_t mode = 0400;
if (!nvmem->root_only) if (!nvmem->root_only)
...@@ -189,6 +186,15 @@ static umode_t nvmem_bin_attr_is_visible(struct kobject *kobj, ...@@ -189,6 +186,15 @@ static umode_t nvmem_bin_attr_is_visible(struct kobject *kobj,
return mode; return mode;
} }
static umode_t nvmem_bin_attr_is_visible(struct kobject *kobj,
struct bin_attribute *attr, int i)
{
struct device *dev = container_of(kobj, struct device, kobj);
struct nvmem_device *nvmem = to_nvmem_device(dev);
return nvmem_bin_attr_get_umode(nvmem);
}
/* default read/write permissions */ /* default read/write permissions */
static struct bin_attribute bin_attr_rw_nvmem = { static struct bin_attribute bin_attr_rw_nvmem = {
.attr = { .attr = {
...@@ -215,34 +221,14 @@ static const struct attribute_group *nvmem_dev_groups[] = { ...@@ -215,34 +221,14 @@ static const struct attribute_group *nvmem_dev_groups[] = {
NULL, NULL,
}; };
/* read only permission */ static struct bin_attribute bin_attr_nvmem_eeprom_compat = {
static struct bin_attribute bin_attr_ro_nvmem = {
.attr = { .attr = {
.name = "nvmem", .name = "eeprom",
.mode = 0444,
},
.read = bin_attr_nvmem_read,
};
/* default read/write permissions, root only */
static struct bin_attribute bin_attr_rw_root_nvmem = {
.attr = {
.name = "nvmem",
.mode = 0600,
}, },
.read = bin_attr_nvmem_read, .read = bin_attr_nvmem_read,
.write = bin_attr_nvmem_write, .write = bin_attr_nvmem_write,
}; };
/* read only permission, root only */
static struct bin_attribute bin_attr_ro_root_nvmem = {
.attr = {
.name = "nvmem",
.mode = 0400,
},
.read = bin_attr_nvmem_read,
};
/* /*
* nvmem_setup_compat() - Create an additional binary entry in * nvmem_setup_compat() - Create an additional binary entry in
* drivers sys directory, to be backwards compatible with the older * drivers sys directory, to be backwards compatible with the older
...@@ -259,18 +245,8 @@ static int nvmem_sysfs_setup_compat(struct nvmem_device *nvmem, ...@@ -259,18 +245,8 @@ static int nvmem_sysfs_setup_compat(struct nvmem_device *nvmem,
if (!config->base_dev) if (!config->base_dev)
return -EINVAL; return -EINVAL;
if (nvmem->read_only) { nvmem->eeprom = bin_attr_nvmem_eeprom_compat;
if (config->root_only) nvmem->eeprom.attr.mode = nvmem_bin_attr_get_umode(nvmem);
nvmem->eeprom = bin_attr_ro_root_nvmem;
else
nvmem->eeprom = bin_attr_ro_nvmem;
} else {
if (config->root_only)
nvmem->eeprom = bin_attr_rw_root_nvmem;
else
nvmem->eeprom = bin_attr_rw_nvmem;
}
nvmem->eeprom.attr.name = "eeprom";
nvmem->eeprom.size = nvmem->size; nvmem->eeprom.size = nvmem->size;
#ifdef CONFIG_DEBUG_LOCK_ALLOC #ifdef CONFIG_DEBUG_LOCK_ALLOC
nvmem->eeprom.attr.key = &eeprom_lock_key; nvmem->eeprom.attr.key = &eeprom_lock_key;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment