diff options
author | Vishal Agarwal <vishal.agarwal@stericsson.com> | 2012-04-13 14:13:22 +0200 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2012-04-16 11:57:40 +0200 |
commit | 745c0ce35f904aeff8e1ea325c259a14a00ff1b7 (patch) | |
tree | e1d05d006621b7cfd1009265ea2afe73b5cc2149 /net/bluetooth/mgmt.c | |
parent | Bluetooth: Add support for Atheros [13d3:3362] (diff) | |
download | linux-745c0ce35f904aeff8e1ea325c259a14a00ff1b7.tar.xz linux-745c0ce35f904aeff8e1ea325c259a14a00ff1b7.zip |
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 4ef275c69675..4bb03b111122 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; |