Sfoglia il codice sorgente

qcacmn: Fix typo in "P2P_EVENT_PROPOGATE_TIME"

Macro P2P_EVENT_PROPOGATE_TIME contains a misspelling of PROPAGATE so
fix the misspelling in both places it occurs.

CRs-Fixed: 2238309
Change-Id: Ic5c4a31820f8b51a5117241c6c6fa01025f4ae84
Jeff Johnson 7 anni fa
parent
commit
2f29abc243
2 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 1 1
      umac/p2p/core/src/wlan_p2p_roc.c
  2. 2 2
      umac/p2p/core/src/wlan_p2p_roc.h

+ 1 - 1
umac/p2p/core/src/wlan_p2p_roc.c

@@ -472,7 +472,7 @@ static QDF_STATUS p2p_process_ready_on_channel_evt(
 		roc_ctx->roc_type, roc_ctx->roc_state);
 
 	status = qdf_mc_timer_start(&roc_ctx->roc_timer,
-		(roc_ctx->duration + P2P_EVENT_PROPOGATE_TIME));
+		(roc_ctx->duration + P2P_EVENT_PROPAGATE_TIME));
 	if (status != QDF_STATUS_SUCCESS)
 		p2p_err("Remain on Channel timer start failed");
 	if (roc_ctx->roc_type == USER_REQUESTED) {

+ 2 - 2
umac/p2p/core/src/wlan_p2p_roc.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2017-2018 The Linux Foundation. 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
@@ -27,7 +27,7 @@
 #include <qdf_mc_timer.h>
 #include <qdf_list.h>
 
-#define P2P_EVENT_PROPOGATE_TIME 10
+#define P2P_EVENT_PROPAGATE_TIME 10
 #define P2P_WAIT_CANCEL_ROC      1000
 
 #ifdef QCA_WIFI_3_0_EMU