aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid
diff options
context:
space:
mode:
authorVivien Didelot <vivien.didelot@savoirfairelinux.com>2015-01-19 02:03:25 -0500
committerJiri Kosina <jkosina@suse.cz>2015-01-19 13:58:47 +0100
commitfcf80e597c5182edbcbe8322f8e4dfbf5b5d5d64 (patch)
tree39e88c6808f942b495d7f158bb111f8f2f329b52 /drivers/hid
parentHID: logitech-hidpp: store the name of the device in struct hidpp (diff)
downloadlinux-dev-fcf80e597c5182edbcbe8322f8e4dfbf5b5d5d64.tar.xz
linux-dev-fcf80e597c5182edbcbe8322f8e4dfbf5b5d5d64.zip
HID: hid-lg4ff: fix sysfs attribute permission
There is no reason to set the range attribute executable to the user and group, and writable to the group. Fix the permission to 0644. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/hid-lg4ff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hid/hid-lg4ff.c b/drivers/hid/hid-lg4ff.c
index 7835717bc020..4b668bf6a67c 100644
--- a/drivers/hid/hid-lg4ff.c
+++ b/drivers/hid/hid-lg4ff.c
@@ -52,7 +52,8 @@ static void hid_lg4ff_set_range_g25(struct hid_device *hid, u16 range);
static ssize_t lg4ff_range_show(struct device *dev, struct device_attribute *attr, char *buf);
static ssize_t lg4ff_range_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count);
-static DEVICE_ATTR(range, S_IRWXU | S_IRWXG | S_IROTH, lg4ff_range_show, lg4ff_range_store);
+static DEVICE_ATTR(range, S_IRUGO | S_IWUSR, lg4ff_range_show,
+ lg4ff_range_store);
struct lg4ff_device_entry {
__u32 product_id;