From 0a050d77c10e84b6c184fa69ab28db0ea0e5dcda Mon Sep 17 00:00:00 2001 From: yeshwanth sriram guntuka Date: Mon, 10 Jul 2017 15:01:15 +0530 Subject: [PATCH] qcacmn: Fix excessive logging kmsg is flooded with excessive logs from wmi_control_rx. Fix is to change log level to debug. Change-Id: I327463387a5dac318ecc0ad7e773006cfc09b42a CRs-Fixed: 2073718 --- wmi_unified.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/wmi_unified.c b/wmi_unified.c index e87fab65c6..5a50526b02 100644 --- a/wmi_unified.c +++ b/wmi_unified.c @@ -2353,9 +2353,8 @@ static void wmi_control_rx(void *ctx, HTC_PACKET *htc_packet) id = WMI_GET_FIELD(qdf_nbuf_data(evt_buf), WMI_CMD_HDR, COMMANDID); idx = wmi_unified_get_event_handler_ix(wmi_handle, id); if (qdf_unlikely(idx == A_ERROR)) { - qdf_print - ("%s :event handler is not registered: event id 0x%x\n", - __func__, id); + WMI_LOGD("%s :event handler is not registered: event id 0x%x\n", + __func__, id); qdf_nbuf_free(evt_buf); return; }