diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-11-28 17:59:42 +0200 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-12-03 15:59:59 -0200 |
commit | ced5c338d7b696021058c23fb6a286def2171df5 (patch) | |
tree | b813b839a11627147237b6aa44149f4bc57544a7 /net/bluetooth | |
parent | 5e4e3972b8da23e270fa37670caec4d32f2197f7 (diff) | |
download | linux-3.10-ced5c338d7b696021058c23fb6a286def2171df5.tar.gz linux-3.10-ced5c338d7b696021058c23fb6a286def2171df5.tar.bz2 linux-3.10-ced5c338d7b696021058c23fb6a286def2171df5.zip |
Bluetooth: AMP: Mark controller radio powered down after HCIDEVDOWN
After getting HCIDEVDOWN controller did not mark itself as 0x00 which
means: "The Controller radio is available but is currently physically
powered down". The result was even if the hdev was down we return
in controller list value 0x01 "status 0x01 (Bluetooth only)".
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/hci_core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 69eb644f0d4..ec7d3a7adf7 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -861,6 +861,9 @@ static int hci_dev_do_close(struct hci_dev *hdev) /* Clear flags */ hdev->flags = 0; + /* Controller radio is available but is currently powered down */ + hdev->amp_status = 0; + memset(hdev->eir, 0, sizeof(hdev->eir)); memset(hdev->dev_class, 0, sizeof(hdev->dev_class)); |