Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5bbf150c authored by Axel Lin's avatar Axel Lin Committed by Bryan Wu
Browse files

leds: lm355x: Fix up world writable sysfs file



We don't need the sysfs file to be world writable or group writable.
This file is write-only, change it to S_IWUSR (0200).

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Acked-by: default avatarG.Shark Jeong <gshark.jeong@gmail.com>
Signed-off-by: default avatarBryan Wu <cooloney@gmail.com>
parent 3651c4b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -411,7 +411,7 @@ static ssize_t lm3556_indicator_pattern_store(struct device *dev,
	return ret;
}

static DEVICE_ATTR(pattern, 0666, NULL, lm3556_indicator_pattern_store);
static DEVICE_ATTR(pattern, S_IWUSR, NULL, lm3556_indicator_pattern_store);

static const struct regmap_config lm355x_regmap = {
	.reg_bits = 8,