From 75ea56b5109a7bd88a63c9601d4a6659df92cdef Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Sat, 29 Dec 2018 18:00:39 -0800 Subject: [PATCH] qcacld-3.0: Harmonize sap_get_channel_list() The parameter identifiers used in the implementation of sap_get_channel_list() differ from the ones used in the forward reference. Since this can be confusing for both humans and code analysis tools, harmonize on the parameters used in the implementation. Change-Id: I356740677e790e48b0c28d5ca694be3ae3835d59 CRs-Fixed: 2375524 --- core/sap/src/sap_fsm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/sap/src/sap_fsm.c b/core/sap/src/sap_fsm.c index 805d6bd974..b735dfec82 100644 --- a/core/sap/src/sap_fsm.c +++ b/core/sap/src/sap_fsm.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved. + * Copyright (c) 2012-2019 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 @@ -83,9 +83,9 @@ extern sapSafeChannelType safe_channels[]; * Static Function Declarations and Definitions * -------------------------------------------------------------------------*/ #ifdef SOFTAP_CHANNEL_RANGE -static QDF_STATUS sap_get_channel_list(struct sap_context *sapContext, - uint8_t **channelList, - uint8_t *numberOfChannels); +static QDF_STATUS sap_get_channel_list(struct sap_context *sap_ctx, + uint8_t **ch_list, + uint8_t *num_ch); #endif /*==========================================================================