Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
bml: remove the unsupported 60Ghz option from selected bands
Browse files Browse the repository at this point in the history
Remove the 60Ghz option from the BML_CLIENT_SELECTED_BANDS in both
bml_defs and bml_cli respectively.

PPM-383

Signed-off-by: DanielEdriPurpl <[email protected]>
  • Loading branch information
DanielEdriPurpl authored and mergify-bot committed Aug 13, 2020
1 parent 15a7f0f commit 3b7f9df
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion controller/src/beerocks/bml/bml_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ extern "C" {
#define BML_CLIENT_SELECTED_BANDS_24G 1
#define BML_CLIENT_SELECTED_BANDS_5G 2
#define BML_CLIENT_SELECTED_BANDS_6G 4
#define BML_CLIENT_SELECTED_BANDS_60G 8

#define BML_PARAMETER_NOT_CONFIGURED -1

Expand Down
2 changes: 0 additions & 2 deletions controller/src/beerocks/cli/beerocks_cli_bml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2264,8 +2264,6 @@ int cli_bml::client_get_client(const std::string &sta_mac)
ret += "5GHz,";
if (val & BML_CLIENT_SELECTED_BANDS_6G)
ret += "6GHz,";
if (val & BML_CLIENT_SELECTED_BANDS_60G)
ret += "60GHz,";

// remove ending comma
if (!ret.empty() && (ret.back() == ',')) {
Expand Down

0 comments on commit 3b7f9df

Please sign in to comment.