summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKejun ZHOU <kejun.zhou@linaro.org>2012-01-20 12:15:10 -0700
committerPhilippe Langlais <philippe.langlais@stericsson.com>2012-05-22 11:07:33 +0200
commitadf961596806b476e96f3c141c18d364b005edbb (patch)
tree4b93aed419fe30c0553bf73e5d0bcac35e3098a9
parentc480d6f6de40ca6eddae262b5f462153dbd567c5 (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 f974961754c..659b1c5cbcd 100644
--- a/net/rfkill/core.c
+++ b/net/rfkill/core.c
@@ -723,7 +723,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),