summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKejun ZHOU <kejun.zhou@linaro.org>2012-01-20 12:15:10 -0700
committerMathieu J. Poirier <mathieu.poirier@linaro.org>2012-01-20 12:28:40 -0700
commitc0ebc4226b30ffabd0f57faeefbfb18836ce05fd (patch)
tree8cc20e152ac0c3fa084ef9cc68aec0af362720dc
parent7a9c9268c1f3e77a5eb6873b707c6d1482e30a58 (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 df2dae6b272..09970ecd9dd 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),