diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-07-15 03:51:45 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-15 03:51:45 -0400 |
commit | d3a8eab093aab9f309d2e8d06cd718a4cb20e626 (patch) | |
tree | 9b2b6beb4d071a1e6cf423f075a0893f6c99d00c /drivers/bluetooth | |
parent | 2870c43d1795bcb40b12bad6456f07ad8e64b3de (diff) |
bluetooth/hci_bcsp: fix bitrev Kconfig
Fix bluetooth hci_bcsp Kconfig to avoid build errors:
drivers/built-in.o: In function `bcsp_prepare_pkt':
hci_bcsp.c:(.text+0x7e9ac): undefined reference to `bitrev16'
drivers/built-in.o: In function `bcsp_recv':
hci_bcsp.c:(.text+0x7f276): undefined reference to `bitrev16'
hci_bcsp.c:(.text+0x7f293): undefined reference to `bitrev16'
make[1]: *** [.tmp_vmlinux1] Error 1
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Ackey-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r-- | drivers/bluetooth/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig index 71a58a4e1795..a235ca787465 100644 --- a/drivers/bluetooth/Kconfig +++ b/drivers/bluetooth/Kconfig | |||
@@ -71,7 +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 | select BITREVERSE |
75 | help | 75 | help |
76 | BCSP (BlueCore Serial Protocol) is serial protocol for communication | 76 | BCSP (BlueCore Serial Protocol) is serial protocol for communication |
77 | between Bluetooth device and host. This protocol is required for non | 77 | between Bluetooth device and host. This protocol is required for non |