qcacmn: add support for ACTION_OUI_EXTEND_WOW_ITO

Map ACTION_OUI_EXTEND_WOW_ITO to WMI_VENDOR_OUI_ACTION_EXTEND_WOW_ITO.

Change-Id: I2874e84fe88f1b4adfc6b579298937f353fa8900
CRs-Fixed: 3246877
This commit is contained in:
Yu Wang
2022-07-07 17:29:09 +08:00
committed by Madan Koyyalamudi
parent b39112e991
commit c8ba5e36c8

View File

@@ -1,5 +1,6 @@
/* /*
* Copyright (c) 2016-2018, 2020 The Linux Foundation. All rights reserved. * Copyright (c) 2016-2018, 2020 The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
* *
* Permission to use, copy, modify, and/or distribute this software for * Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the * any purpose with or without fee is hereby granted, provided that the
@@ -56,6 +57,10 @@ bool wmi_get_action_oui_id(enum action_oui_id action_id,
*id = WMI_VENDOR_OUI_ACTION_DISABLE_FW_TRIGGERED_TWT; *id = WMI_VENDOR_OUI_ACTION_DISABLE_FW_TRIGGERED_TWT;
return true; return true;
case ACTION_OUI_EXTEND_WOW_ITO:
*id = WMI_VENDOR_OUI_ACTION_EXTEND_WOW_ITO;
return true;
default: default:
return false; return false;
} }