qcacmn: Fix excessive log in send_wow_delete_pattern_cmd_tlv

Once user configs hundreds of wow pattern, it will cause
log flood here.

Remove the log here.

Change-Id: I56d749ca4b7db91a72c5a7fe12dbcd751397d19e
CRs-Fixed: 2402655
This commit is contained in:
Jingxiang Ge
2019-02-21 16:01:04 +08:00
committed by nshrivas
parent feecb9f343
commit c9aed3dc45

View File

@@ -1,6 +1,5 @@
/* /*
* Copyright (c) 2018 The Linux Foundation. All rights reserved. * Copyright (c) 2018-2019 The Linux Foundation. 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
@@ -1581,9 +1580,6 @@ static QDF_STATUS send_wow_delete_pattern_cmd_tlv(wmi_unified_t wmi_handle,
cmd->pattern_id = ptrn_id; cmd->pattern_id = ptrn_id;
cmd->pattern_type = WOW_BITMAP_PATTERN; cmd->pattern_type = WOW_BITMAP_PATTERN;
WMI_LOGI("Deleting pattern id: %d vdev id %d in fw",
cmd->pattern_id, vdev_id);
wmi_mtrace(WMI_WOW_DEL_WAKE_PATTERN_CMDID, cmd->vdev_id, 0); wmi_mtrace(WMI_WOW_DEL_WAKE_PATTERN_CMDID, cmd->vdev_id, 0);
ret = wmi_unified_cmd_send(wmi_handle, buf, len, ret = wmi_unified_cmd_send(wmi_handle, buf, len,
WMI_WOW_DEL_WAKE_PATTERN_CMDID); WMI_WOW_DEL_WAKE_PATTERN_CMDID);