Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Fix SAP restart #146

Merged
merged 3 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
ls -la
git log --pretty=oneline | head -n 10
./scripts/ci/check_compliance.py --annotate -e gitlint -e KconfigBasic -e Kconfig \
-c origin/${BASE_REF}..
-e ModulesMaintainers -c origin/${BASE_REF}..

- name: upload-results
uses: actions/upload-artifact@v3
Expand Down
7 changes: 6 additions & 1 deletion src/drivers/driver_zephyr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1580,8 +1580,10 @@ int wpa_drv_zep_stop_ap(void *priv)
}

if_ctx->freq = 0;
if_ctx->beacon_set = false;
out:
if (if_ctx) {
if_ctx->beacon_set = false;
}
return ret;
}

Expand Down Expand Up @@ -1613,6 +1615,9 @@ int wpa_drv_zep_deinit_ap(void *priv)
}

out:
if (if_ctx) {
if_ctx->beacon_set = false;
}
return ret;
}

Expand Down
Loading