summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKejun ZHOU <kejun.zhou@linaro.org>2012-01-20 12:15:10 -0700
committerPhilippe Langlais <philippe.langlais@linaro.org>2012-03-19 09:03:00 +0100
commita887ddba8cb80ebdb8708d1fa64268e8c5c4867d (patch)
treeb39ca3c1fdb7cb1eee4b93a78aac1a99f53880a7
parent1fb2802cdfe2cb39f59278d482eb298161d3748f (diff)
snowball: android: Fixing access right for BT
Signed-off-by: Kejun ZHOU <kejun.zhou@linaro.org> Committer: Mathieu Poirier <mathieu.poirier@linaro.org>
-rw-r--r--net/rfkill/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rfkill/core.c b/net/rfkill/core.c
index 354760ebbbd..696e1fb1065 100644
--- a/net/rfkill/core.c
+++ b/net/rfkill/core.c
@@ -722,7 +722,7 @@ static struct device_attribute rfkill_dev_attrs[] = {
__ATTR(type, S_IRUGO, rfkill_type_show, NULL),
__ATTR(index, S_IRUGO, rfkill_idx_show, NULL),
__ATTR(persistent, S_IRUGO, rfkill_persistent_show, NULL),
- __ATTR(state, S_IRUGO|S_IWUSR, rfkill_state_show, rfkill_state_store),
+ __ATTR(state, S_IRUGO|S_IWUGO, rfkill_state_show, rfkill_state_store),
__ATTR(claim, S_IRUGO|S_IWUSR, rfkill_claim_show, rfkill_claim_store),
__ATTR(soft, S_IRUGO|S_IWUSR, rfkill_soft_show, rfkill_soft_store),
__ATTR(hard, S_IRUGO, rfkill_hard_show, NULL),