diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-10-11 22:57:01 +0400 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-10-11 22:57:01 +0400 |
commit | 669bb3962bd7f781879222eeb7263d527551dd5e (patch) | |
tree | 1f0e3ca30cac89dbcc1e12ac9cb0a3b636340e50 /net/bluetooth/hci_event.c | |
parent | 8d6765aa39434ad65a3ae3b695f9c799f32d1d12 (diff) | |
download | linux-669bb3962bd7f781879222eeb7263d527551dd5e.tar.xz |
Bluetooth: Fix permission of enable_le param
With 0444 it is impossible to change the param, changing it to 0644.
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/hci_event.c')
-rw-r--r-- | net/bluetooth/hci_event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index d7d96b6b1f0d..0e57634ab8da 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -3104,5 +3104,5 @@ void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data) kfree_skb(skb); } -module_param(enable_le, bool, 0444); +module_param(enable_le, bool, 0644); MODULE_PARM_DESC(enable_le, "Enable LE support"); |