diff options
author | Vishal Agarwal <vishal.agarwal@stericsson.com> | 2012-04-13 17:43:22 +0530 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-04-16 12:57:40 +0300 |
commit | 745c0ce35f904aeff8e1ea325c259a14a00ff1b7 (patch) | |
tree | e1d05d006621b7cfd1009265ea2afe73b5cc2149 /net/bluetooth/mgmt.c | |
parent | 87522a433ba6886b5ccbb497e0a7cb8097def64e (diff) |
Bluetooth: hci_persistent_key should return bool
This patch changes the return type of function hci_persistent_key
from int to bool because it makes more sense to return information
whether a key is persistent or not as a bool.
Signed-off-by: Vishal Agarwal <vishal.agarwal@stericsson.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r-- | net/bluetooth/mgmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 4ef275c6967..4bb03b11112 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -2884,7 +2884,7 @@ int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status) return 0; } -int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key, u8 persistent) +int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key, bool persistent) { struct mgmt_ev_new_link_key ev; |