From: Andrei Emeltchenko Date: Wed, 28 Nov 2012 15:59:42 +0000 (+0200) Subject: Bluetooth: AMP: Mark controller radio powered down after HCIDEVDOWN X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=ced5c338d7b696021058c23fb6a286def2171df5;p=~shefty%2Frdma-dev.git 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 Signed-off-by: Gustavo Padovan --- 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));