diff options
author | Axel Lin <axel.lin@gmail.com> | 2010-06-30 04:20:23 +0200 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2010-08-03 15:48:52 +0200 |
commit | 370525df9dfb4f55dfc177b0c31c26d77694c992 (patch) | |
tree | b60e3baad4c844fabd2e516fd68d627c564a0f26 /drivers | |
parent | asus-laptop: fix a memory leak in asus_laptop_get_info error path (diff) | |
download | linux-370525df9dfb4f55dfc177b0c31c26d77694c992.tar.xz linux-370525df9dfb4f55dfc177b0c31c26d77694c992.zip |
acer-wmi: set permissions on interface file to S_IRUGO
The interface file is not writable, thus set permissions to S_IRUGO.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/platform/x86/acer-wmi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c index 56e6f1040e4f..aacd0602f859 100644 --- a/drivers/platform/x86/acer-wmi.c +++ b/drivers/platform/x86/acer-wmi.c @@ -1084,8 +1084,7 @@ static ssize_t show_interface(struct device *dev, struct device_attribute *attr, } } -static DEVICE_ATTR(interface, S_IWUGO | S_IRUGO | S_IWUSR, - show_interface, NULL); +static DEVICE_ATTR(interface, S_IRUGO, show_interface, NULL); /* * debugfs functions |