diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2011-06-22 10:08:11 -0700 |
---|---|---|
committer | Jaikumar Ganesh <jaikumar@google.com> | 2011-07-11 11:59:25 -0700 |
commit | 63e9cde0c36ef100e5f8ea25fc883a69b0694c27 (patch) | |
tree | 2e3206356b995e45a3a885242cb873737c6ae3ca /net/bluetooth | |
parent | 23e64946e562fd253cd79ea41669e03ecdf86703 (diff) | |
download | kernel_samsung_tuna-63e9cde0c36ef100e5f8ea25fc883a69b0694c27.zip kernel_samsung_tuna-63e9cde0c36ef100e5f8ea25fc883a69b0694c27.tar.gz kernel_samsung_tuna-63e9cde0c36ef100e5f8ea25fc883a69b0694c27.tar.bz2 |
Bluetooth: uses crypto interfaces, select CRYPTO
Recent changes to hci_core.c use crypto interfaces, so select CRYPTO
to make sure that those interfaces are present.
Fixes these build errors when CRYPTO is not enabled:
net/built-in.o: In function `hci_register_dev':
(.text+0x4cf86): undefined reference to `crypto_alloc_base'
net/built-in.o: In function `hci_unregister_dev':
(.text+0x4f912): undefined reference to `crypto_destroy_tfm'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig index f495dea..bfb3dc0 100644 --- a/net/bluetooth/Kconfig +++ b/net/bluetooth/Kconfig @@ -6,6 +6,7 @@ menuconfig BT tristate "Bluetooth subsystem support" depends on NET && !S390 depends on RFKILL || !RFKILL + select CRYPTO help Bluetooth is low-cost, low-power, short-range wireless technology. It was designed as a replacement for cables and other short-range |