diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-06-10 15:48:45 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-06-10 15:48:45 -0400 |
commit | c5ec514016d1a65922465372ff1e6748e6f7dea9 (patch) | |
tree | 85792d041ec41e90bc20933a42b7b3e6c40f282d /drivers/bluetooth/Kconfig | |
parent | 9a727a250c676334efdcb71a5b2ad4603addda06 (diff) |
bluetooth: hci_bcsp.c small cleanups/api users
Use bitrev16 from lib/bitrev.c.
Use the get_unaligned_be16 to get the crc from the packet, create a
small helper function for this.
Fix a shadowed variable sparse warning:
drivers/bluetooth/hci_bcsp.c:218:26: warning: symbol 'hdr' shadows an earlier one
drivers/bluetooth/hci_bcsp.c:187:5: originally declared here
[akpm@linux-foundation.org: select CONFIG_BITREVERSE, noted by akinobu.mita@gmail.com]
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/bluetooth/Kconfig')
-rw-r--r-- | drivers/bluetooth/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig index 075598e1c502..71a58a4e1795 100644 --- a/drivers/bluetooth/Kconfig +++ b/drivers/bluetooth/Kconfig | |||
@@ -71,6 +71,7 @@ config BT_HCIUART_H4 | |||
71 | config BT_HCIUART_BCSP | 71 | config BT_HCIUART_BCSP |
72 | bool "BCSP protocol support" | 72 | bool "BCSP protocol support" |
73 | depends on BT_HCIUART | 73 | depends on BT_HCIUART |
74 | select CONFIG_BITREVERSE | ||
74 | help | 75 | help |
75 | BCSP (BlueCore Serial Protocol) is serial protocol for communication | 76 | BCSP (BlueCore Serial Protocol) is serial protocol for communication |
76 | between Bluetooth device and host. This protocol is required for non | 77 | between Bluetooth device and host. This protocol is required for non |