Change permissions and update README

This commit is contained in:
Loic Guegan 2023-08-11 12:44:50 +02:00
parent d43c92e2a1
commit 63656e1bd8
2 changed files with 16 additions and 5 deletions

View file

@ -371,9 +371,9 @@ static const struct attribute_group registers_group = {
};
// ----- Metrics -----
static struct kobj_attribute metric_power_attribute =
__ATTR(power, 0664, attr_metric_show, NULL);
__ATTR(power, 0444, attr_metric_show, NULL);
static struct kobj_attribute metric_voltage_attribute =
__ATTR(voltage, 0664, attr_metric_show, NULL);
__ATTR(voltage, 0444, attr_metric_show, NULL);
static struct kobj_attribute metric_current_attribute = {
.attr = {.name = "current", // current is a defined macro so need to do it manually
.mode = VERIFY_OCTAL_PERMISSIONS(0444) },