mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
Bluetooth: btmrvl: update hs_state in interrupt handler
Host sleep status flag should be reset when there is an interrupt from device. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Cathy Luo <cluo@marvell.com> Signed-off-by: Avinash Patil <patila@marvell.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
025a60a752
commit
4c79e1dd3e
@ -41,6 +41,11 @@ void btmrvl_interrupt(struct btmrvl_private *priv)
|
||||
|
||||
priv->adapter->int_count++;
|
||||
|
||||
if (priv->adapter->hs_state == HS_ACTIVATED) {
|
||||
BT_DBG("BT: HS DEACTIVATED in ISR!\n");
|
||||
priv->adapter->hs_state = HS_DEACTIVATED;
|
||||
}
|
||||
|
||||
wake_up_interruptible(&priv->main_thread.wait_q);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(btmrvl_interrupt);
|
||||
@ -323,6 +328,7 @@ int btmrvl_prepare_command(struct btmrvl_private *priv)
|
||||
} else {
|
||||
ret = priv->hw_wakeup_firmware(priv);
|
||||
priv->adapter->hs_state = HS_DEACTIVATED;
|
||||
BT_DBG("BT: HS DEACTIVATED due to host activity!\n");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user