From: Gustavo F. Padovan Date: Tue, 11 Oct 2011 18:57:01 +0000 (-0300) Subject: Bluetooth: Fix permission of enable_le param X-Git-Tag: v3.3-rc1~182^2~44^2~536^2~85 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=669bb3962bd7f781879222eeb7263d527551dd5e;p=profile%2Fivi%2Fkernel-x86-ivi.git 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 --- 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 @@ 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");