From c8ba5e36c87913086db3be2c828c9eba5de234f7 Mon Sep 17 00:00:00 2001 From: Yu Wang Date: Thu, 7 Jul 2022 17:29:09 +0800 Subject: [PATCH] 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 --- wmi/src/wmi_unified_action_oui_tlv.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wmi/src/wmi_unified_action_oui_tlv.c b/wmi/src/wmi_unified_action_oui_tlv.c index b9e698fb53..5851ffe5f2 100644 --- a/wmi/src/wmi_unified_action_oui_tlv.c +++ b/wmi/src/wmi_unified_action_oui_tlv.c @@ -1,5 +1,6 @@ /* * 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 * 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; return true; + case ACTION_OUI_EXTEND_WOW_ITO: + *id = WMI_VENDOR_OUI_ACTION_EXTEND_WOW_ITO; + return true; + default: return false; }