Sfoglia il codice sorgente

qcacld-3.0: Fix incorrect wma_er() function call

A typo was introduced by the following patch:
  qcacld-3.0: Replace WMA_LOGE() with wma_err() in wma_main.c
  Change-Id If55d52640dbe921377f1ceffed609e096f449563

One instance of WMA_LOGE(), in wma_motion_det_host_event_handler(),
was changed to wma_er() instead of wma_err(). This has gone undetected
since it is feature-specific code that is not enabled, and hence has
not resulted in a compilation failure. But this was detected manually
during dead code removal, so fix the typo.

Change-Id: I07b6b5792c1419a83ee1a735943b8375d22e71d8
CRs-Fixed: 3432958
Jeff Johnson 2 anni fa
parent
commit
1b11b38dbd
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      core/wma/src/wma_main.c

+ 1 - 1
core/wma/src/wma_main.c

@@ -8584,7 +8584,7 @@ int wma_motion_det_host_event_handler(void *handle, uint8_t *event,
 				    QDF_MODULE_ID_PE);
 
 	if (!param_buf) {
-		wma_er("Invalid motion det host event buffer");
+		wma_err("Invalid motion det host event buffer");
 		return -EINVAL;
 	}