wifi: mwifiex: Use IRQF_NO_AUTOEN flag in request_irq()
[ Upstream commit 9a98dd48b6d834d7a3fe5e8e7b8c3a1d006f9685 ]
disable_irq() after request_irq() still has a time gap in which
interrupts can come. request_irq() with IRQF_NO_AUTOEN flag will
disable IRQ auto-enable when request IRQ.
Fixes: 853402a008 ("mwifiex: Enable WoWLAN for both sdio and pcie")
Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
Acked-by: Brian Norris <briannorris@chromium.org>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://patch.msgid.link/20240910124314.698896-3-ruanjinjie@huawei.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
0e720766e0
commit
d766e4dfae
1 changed files with 2 additions and 2 deletions
|
|
@ -1600,7 +1600,8 @@ static void mwifiex_probe_of(struct mwifiex_adapter *adapter)
|
|||
}
|
||||
|
||||
ret = devm_request_irq(dev, adapter->irq_wakeup,
|
||||
mwifiex_irq_wakeup_handler, IRQF_TRIGGER_LOW,
|
||||
mwifiex_irq_wakeup_handler,
|
||||
IRQF_TRIGGER_LOW | IRQF_NO_AUTOEN,
|
||||
"wifi_wake", adapter);
|
||||
if (ret) {
|
||||
dev_err(dev, "Failed to request irq_wakeup %d (%d)\n",
|
||||
|
|
@ -1608,7 +1609,6 @@ static void mwifiex_probe_of(struct mwifiex_adapter *adapter)
|
|||
goto err_exit;
|
||||
}
|
||||
|
||||
disable_irq(adapter->irq_wakeup);
|
||||
if (device_init_wakeup(dev, true)) {
|
||||
dev_err(dev, "fail to init wakeup for mwifiex\n");
|
||||
goto err_exit;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue