Skip to content

Commit

Permalink
HID: hid-lg4ff: fix sysfs attribute permission
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Vivien Didelot authored and Jiri Kosina committed Jan 19, 2015
1 parent 005b3f5 commit fcf80e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/hid/hid-lg4ff.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit fcf80e5

Please sign in to comment.