mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
Input: ili210x - fix permissions on "calibrate" attribute
"calibrate" attribute does not provide "show" methods and thus we should not mark it as readable. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
2de4fcc646
commit
b27c0d0c3b
@ -169,7 +169,7 @@ static ssize_t ili210x_calibrate(struct device *dev,
|
||||
|
||||
return count;
|
||||
}
|
||||
static DEVICE_ATTR(calibrate, 0644, NULL, ili210x_calibrate);
|
||||
static DEVICE_ATTR(calibrate, S_IWUSR, NULL, ili210x_calibrate);
|
||||
|
||||
static struct attribute *ili210x_attributes[] = {
|
||||
&dev_attr_calibrate.attr,
|
||||
|
Loading…
Reference in New Issue
Block a user