From: Axel Lin Date: Fri, 9 Nov 2012 03:04:48 +0000 (+1100) Subject: drivers/video/backlight/lm3639_bl.c: fix up world writable sysfs file X-Git-Tag: next-20121112~5^2~98 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c15a20df21fc945fc43bbfc3979023173f8775c9;p=karo-tx-linux.git drivers/video/backlight/lm3639_bl.c: 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: Axel Lin Acked-by: "G.Shark Jeong" Signed-off-by: Andrew Morton --- diff --git a/drivers/video/backlight/lm3639_bl.c b/drivers/video/backlight/lm3639_bl.c index 585949b57055..6f7a20ebc1a3 100644 --- a/drivers/video/backlight/lm3639_bl.c +++ b/drivers/video/backlight/lm3639_bl.c @@ -214,7 +214,7 @@ out_input: } -static DEVICE_ATTR(bled_mode, 0666, NULL, lm3639_bled_mode_store); +static DEVICE_ATTR(bled_mode, S_IWUSR, NULL, lm3639_bled_mode_store); /* torch */ static void lm3639_torch_brightness_set(struct led_classdev *cdev,