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

Commit bb0a1ee8 authored by Shantanu Jain's avatar Shantanu Jain
Browse files

input: synaptics_dsx: fix data sysfs read-write permission



Change the data sysfs file read-write permissions to
RW permission to user and R permission to group and
world.

Change-Id: I8f2d3da1f491d6ee63fc6ed6e33de12f1a4bc282
Signed-off-by: default avatarShantanu Jain <shjain@codeaurora.org>
parent c30e0fc0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -286,7 +286,7 @@ struct synaptics_rmi4_fwu_handle {
static struct bin_attribute dev_attr_data = {
	.attr = {
		.name = "data",
		.mode = (S_IRUGO | S_IWUGO),
		.mode = (S_IRUGO | S_IWUSR),
	},
	.size = 0,
	.read = fwu_sysfs_show_image,