OSDN Git Service
(root)
/
android-x86
/
kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03e34a0
)
drivers: switch: remove S_IWUSR from dev_attr
author
Qiao Zhou
<zhouqiao@marvell.com>
Thu, 31 Oct 2013 01:36:50 +0000
(09:36 +0800)
committer
Chih-Wei Huang
<cwhuang@linux.org.tw>
Mon, 13 Apr 2015 16:43:01 +0000
(
00:43
+0800)
it doesn't need S_IWUSR attribute since xxx_store API is un-needed.
otherwise the WARN check in device_create_file will alert.
Change-Id: I6360bf022dcd659bfb3f41c84624f954d5d15ea5
Signed-off-by: Qiao Zhou <zhouqiao@marvell.com>
drivers/switch/switch_class.c
patch
|
blob
|
history
diff --git
a/drivers/switch/switch_class.c
b/drivers/switch/switch_class.c
index
e05fc25
..
e373b62
100644
(file)
--- a/
drivers/switch/switch_class.c
+++ b/
drivers/switch/switch_class.c
@@
-54,8
+54,8
@@
static ssize_t name_show(struct device *dev, struct device_attribute *attr,
return sprintf(buf, "%s\n", sdev->name);
}
-static DEVICE_ATTR(state, S_IRUGO
| S_IWUSR
, state_show, NULL);
-static DEVICE_ATTR(name, S_IRUGO
| S_IWUSR
, name_show, NULL);
+static DEVICE_ATTR(state, S_IRUGO, state_show, NULL);
+static DEVICE_ATTR(name, S_IRUGO, name_show, NULL);
void switch_set_state(struct switch_dev *sdev, int state)
{