commit | 89d7253825c9bbe8d2df227ffc745fa1e1e1672f | [log] [tgz] |
---|---|---|
author | Kai Shi <kaishi@google.com> | Thu Sep 17 23:23:27 2020 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Sep 17 23:23:27 2020 +0000 |
tree | 255e7b1b8fd76eeedfeed26b8381781bf5eed7e9 | |
parent | c174534e032a148228bd870d70348c55f2609b1e [diff] | |
parent | 935ce1e1675a9f0894242fabae6bac82359add0c [diff] |
Merge "Bug fix of 6GHz band channelization" into rvc-qpr-dev
diff --git a/hostapd/hidl/1.2/hostapd.cpp b/hostapd/hidl/1.2/hostapd.cpp index 537353a..7789ed6 100644 --- a/hostapd/hidl/1.2/hostapd.cpp +++ b/hostapd/hidl/1.2/hostapd.cpp
@@ -196,6 +196,10 @@ // 160MHz channel return 134; } + if (channel == 2) { + // 20MHz channel + return 136; + } // Error return 0; }