diff options
author | David S. Miller <davem@davemloft.net> | 2012-01-22 14:45:14 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-22 15:08:46 -0500 |
commit | b1cc16b8e643096adb92bbcb76c6c4c564141c40 (patch) | |
tree | c82c5be4c43ab5c82cf9fad022a4c77df30e90cc /net | |
parent | 0e90b31f4ba77027a7c21cbfc66404df0851ca21 (diff) | |
download | op-kernel-dev-b1cc16b8e643096adb92bbcb76c6c4c564141c40.zip op-kernel-dev-b1cc16b8e643096adb92bbcb76c6c4c564141c40.tar.gz |
bluetooth: hci: Fix type of "enable_hs" to bool.
Fixes:
net/bluetooth/hci_core.c: In function ‘__check_enable_hs’:
net/bluetooth/hci_core.c:2587:1: warning: return from incompatible pointer type [enabled by default]
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 845da3e..9de9371 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -55,7 +55,7 @@ #define AUTO_OFF_TIMEOUT 2000 -int enable_hs; +bool enable_hs; static void hci_rx_work(struct work_struct *work); static void hci_cmd_work(struct work_struct *work); |