Skip to content
Open
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
6 changes: 6 additions & 0 deletions source/OvsAction/ovs_action.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ static bool is_brcm_wifi_model(int model)
case OVS_SCXF11BFL_MODEL:
case OVS_SR213_MODEL:
case OVS_SCER11BEL_MODEL:
case OVS_AYER21BEL_MODEL:
case OVS_WNXL11BWL_MODEL:
return true;
default:
Expand Down Expand Up @@ -244,6 +245,11 @@ static bool SetModelNum(const char * model_num, ovs_action_config * config)
config->modelNum = OVS_SCXF11BFL_MODEL;
rtn = true;
}
else if (strcmp(model_num, "AYER21BEL") == 0)
{
config->modelNum = OVS_AYER21BEL_MODEL;
rtn = true;
}
else
{
config->modelNum = OVS_UNKNOWN_MODEL;
Expand Down
3 changes: 2 additions & 1 deletion source/include/OvsDataTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ typedef enum ovs_device_model
OVS_CGA4332COM_MODEL, /** Technicolor CBR2. vinoth */
OVS_SCER11BEL_MODEL, /** Sercomm XER10 */
OVS_RPI_MODEL, /** RPI Reference Platform */
OVS_SCXF11BFL_MODEL /** Sercomm XF10 */
OVS_SCXF11BFL_MODEL, /** Sercomm XF10 */
OVS_AYER21BEL_MODEL /** Arcadyan XER2 */
} OVS_DEVICE_MODEL;

#endif /* OVS_DATA_TYPES_H_ */
Loading