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
This commit is contained in:
Jeff Johnson
2018-05-06 07:59:55 -07:00
committed by nshrivas
parent 0b19b4b59f
commit d8f7e46f25
2 changed files with 3 additions and 3 deletions

View File

@@ -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) {

View File

@@ -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