diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2014-05-13 21:03:48 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2014-05-13 21:23:54 -0400 |
commit | 5c143c02259541c5e5c99d0d657d22a7dbc69334 (patch) | |
tree | 2e612d0e57943abfc68e66414e394e14ad7a6281 /drivers/hid/hid-lg4ff.c | |
parent | 43d910ff15833c341f1c44eec77b34d7b9f42d21 (diff) |
drivers/hid/hid-lg4ff.c: avoid world-writable sysfs files.
In line with practice for module parameters, we're adding a build-time
check that sysfs files aren't world-writable.
Cc: Simon Wood <simon@mungewell.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/hid/hid-lg4ff.c')
-rw-r--r-- | drivers/hid/hid-lg4ff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-lg4ff.c b/drivers/hid/hid-lg4ff.c index 24883b4d1a49..cc2bd2022198 100644 --- a/drivers/hid/hid-lg4ff.c +++ b/drivers/hid/hid-lg4ff.c | |||
@@ -52,7 +52,7 @@ static void hid_lg4ff_set_range_g25(struct hid_device *hid, u16 range); | |||
52 | static ssize_t lg4ff_range_show(struct device *dev, struct device_attribute *attr, char *buf); | 52 | static ssize_t lg4ff_range_show(struct device *dev, struct device_attribute *attr, char *buf); |
53 | static ssize_t lg4ff_range_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count); | 53 | static ssize_t lg4ff_range_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count); |
54 | 54 | ||
55 | static DEVICE_ATTR(range, S_IRWXU | S_IRWXG | S_IRWXO, lg4ff_range_show, lg4ff_range_store); | 55 | static DEVICE_ATTR(range, S_IRWXU | S_IRWXG | S_IROTH, lg4ff_range_show, lg4ff_range_store); |
56 | 56 | ||
57 | struct lg4ff_device_entry { | 57 | struct lg4ff_device_entry { |
58 | __u32 product_id; | 58 | __u32 product_id; |