blob: 1d84d9f3a8bbba977a6c8664a89489233309db23 [file] [log] [blame]
From ea5ab4350b4adae945b1ffc814398e9fd1637039 Mon Sep 17 00:00:00 2001
From: Michael-CY Lee <michael-cy.lee@mediatek.com>
Date: Fri, 1 Sep 2023 15:31:24 +0800
Subject: [PATCH 43/69] mtk: hostapd: avoid color switch when beacon is not set
Signed-off-by: Michael-CY Lee <michael-cy.lee@mediatek.com>
---
src/ap/hostapd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ap/hostapd.c b/src/ap/hostapd.c
index a047927e0..f6366d58a 100644
--- a/src/ap/hostapd.c
+++ b/src/ap/hostapd.c
@@ -4394,7 +4394,7 @@ void hostapd_switch_color(struct hostapd_data *hapd, u64 bitmap)
{
struct os_reltime now;
- if (hapd->cca_in_progress)
+ if (hapd->cca_in_progress || !hapd->beacon_set_done)
return;
if (os_get_reltime(&now))
--
2.39.2