diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-06-14 09:21:25 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-06-14 09:30:51 -0400 |
commit | 1a097181ee8b0c492c021eb3dbaa5f9cd813ad0e (patch) | |
tree | e47ad149e37fccf8c9a90f0ea0e1c145f0317779 | |
parent | 403dbb97f654cd59b87999fe1b64d29bf90b3a2a (diff) |
Bluetooth: Fix Kconfig issue with RFKILL integration
Since the re-write of the RFKILL subsystem it is no longer good to just
select RFKILL, but it is important to add a proper depends on rule.
Based on a report by Alexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | net/bluetooth/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig index 7725da95a767..59fdb1d2e8ed 100644 --- a/net/bluetooth/Kconfig +++ b/net/bluetooth/Kconfig | |||
@@ -3,8 +3,9 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | menuconfig BT | 5 | menuconfig BT |
6 | depends on NET && !S390 | ||
7 | tristate "Bluetooth subsystem support" | 6 | tristate "Bluetooth subsystem support" |
7 | depends on NET && !S390 | ||
8 | depends on RFKILL || !RFKILL | ||
8 | help | 9 | help |
9 | Bluetooth is low-cost, low-power, short-range wireless technology. | 10 | Bluetooth is low-cost, low-power, short-range wireless technology. |
10 | It was designed as a replacement for cables and other short-range | 11 | It was designed as a replacement for cables and other short-range |