commit | 669bb3962bd7f781879222eeb7263d527551dd5e | [log] [tgz] |
---|---|---|
author | Gustavo F. Padovan <padovan@profusion.mobi> | Tue Oct 11 15:57:01 2011 -0300 |
committer | Gustavo F. Padovan <padovan@profusion.mobi> | Tue Oct 11 15:57:01 2011 -0300 |
tree | 1f0e3ca30cac89dbcc1e12ac9cb0a3b636340e50 | |
parent | 8d6765aa39434ad65a3ae3b695f9c799f32d1d12 [diff] [blame] |
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>
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index d7d96b6..0e57634 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c
@@ -3104,5 +3104,5 @@ kfree_skb(skb); } -module_param(enable_le, bool, 0444); +module_param(enable_le, bool, 0644); MODULE_PARM_DESC(enable_le, "Enable LE support");