Commit 669bb396 authored by Gustavo F. Padovan's avatar Gustavo F. Padovan

Bluetooth: Fix permission of enable_le param

With 0444 it is impossible to change the param, changing it to 0644.
Signed-off-by: default avatarGustavo F. Padovan <padovan@profusion.mobi>
parent 8d6765aa
...@@ -3104,5 +3104,5 @@ void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data) ...@@ -3104,5 +3104,5 @@ void hci_si_event(struct hci_dev *hdev, int type, int dlen, void *data)
kfree_skb(skb); kfree_skb(skb);
} }
module_param(enable_le, bool, 0444); module_param(enable_le, bool, 0644);
MODULE_PARM_DESC(enable_le, "Enable LE support"); MODULE_PARM_DESC(enable_le, "Enable LE support");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment