qcacmn: umac: cmn_services: Fix misspellings

Fix misspellings in umac/cmn_services/...

Change-Id: I74c006b3e585e3d4f6ec8c025ef313133c9e3068
CRs-Fixed: 3304695
此提交包含在:
Jeff Johnson
2022-09-30 15:15:59 -07:00
提交者 Madan Koyyalamudi
父節點 c52c4258c2
當前提交 ed240b1daf
共有 29 個檔案被更改,包括 76 行新增68 行删除

查看文件

@@ -452,7 +452,7 @@ QDF_STATUS wlan_crypto_set_peer_wep_keys(struct wlan_objmgr_vdev *vdev,
* wlan_crypto_register_crypto_rx_ops - set crypto_rx_ops
* @crypto_rx_ops: crypto_rx_ops
*
* This function gets called by object manger to register crypto rx ops.
* This function gets called by object manager to register crypto rx ops.
*
* Return: QDF_STATUS
*/
@@ -1073,7 +1073,7 @@ wlan_crypto_selective_clear_sae_single_pmk_entries(
struct wlan_objmgr_vdev *vdev, struct qdf_mac_addr *conn_bssid);
/**
* wlan_crypto_set_sae_single_pmk_bss_cap - Set the peer SAE sinlge pmk
* wlan_crypto_set_sae_single_pmk_bss_cap - Set the peer SAE single pmk
* feature supported status
* @vdev: Vdev
* @bssid: BSSID for which the flag is to be set
@@ -1085,7 +1085,7 @@ void wlan_crypto_set_sae_single_pmk_bss_cap(struct wlan_objmgr_vdev *vdev,
bool single_pmk_capable_bss);
/**
* wlan_crypto_set_sae_single_pmk_bss_cap - Set the peer SAE sinlge pmk info
* wlan_crypto_set_sae_single_pmk_bss_cap - Set the peer SAE single pmk info
* @vdev: Vdev
* @roam_sync_pmksa: pmk info for roamed AP
*/

查看文件

@@ -18,7 +18,7 @@
*/
/**
* DOC: Public definations for crypto service
* DOC: Public definitions for crypto service
*/
#ifndef _WLAN_CRYPTO_GLOBAL_DEF_H_
@@ -311,7 +311,7 @@ struct mobility_domain_params {
* @ssid: ssid information
* @cache_id: cache id
* @pmk_lifetime: Duration in seconds for which the pmk is valid
* @pmk_lifetime_threshold: Percentage of pmk liftime within which
* @pmk_lifetime_threshold: Percentage of pmk lifetime within which
* full authentication is expected to avoid disconnection.
* @pmk_entry_ts: System timestamp at which the PMK entry was created.
* @single_pmk_supported: SAE single pmk supported BSS

查看文件

@@ -18,7 +18,7 @@
*/
/**
* DOC: Private definations for handling crypto params
* DOC: Private definitions for handling crypto params
*/
#ifndef _WLAN_CRYPTO_DEF_I_H_
#define _WLAN_CRYPTO_DEF_I_H_
@@ -115,7 +115,7 @@ static inline void wlan_crypto_put_be64(u8 *a, u64 val)
#define WLAN_CRYPTO_TX_OPS_DEREGISTER_EVENTS(tx_ops) \
((tx_ops)->crypto_tx_ops.deregister_events)
/* unalligned little endian access */
/* unaligned little endian access */
#ifndef LE_READ_2
#define LE_READ_2(p) \
((uint16_t) \

查看文件

@@ -2481,7 +2481,7 @@ bool wlan_crypto_is_mmie_valid(struct wlan_objmgr_vdev *vdev,
if (ret < 0) {
qdf_mem_free(mic);
crypto_err("genarate mmie failed");
crypto_err("generate mmie failed");
return false;
}
@@ -3727,7 +3727,7 @@ exit:
* wlan_crypto_register_crypto_rx_ops - set crypto_rx_ops
* @crypto_rx_ops: crypto_rx_ops
*
* This function gets called by object manger to register crypto rx ops.
* This function gets called by object manager to register crypto rx ops.
*
* Return: QDF_STATUS
*/

查看文件

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. 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
@@ -17,7 +18,7 @@
*/
/**
* DOC: Public API intialization of crypto service with object manager
* DOC: Public API initialization of crypto service with object manager
*/
#include <qdf_types.h>
#include "wlan_crypto_main_i.h"

查看文件

@@ -18,7 +18,7 @@
*/
/**
* DOC: Public API intialization of crypto service with object manager
* DOC: Public API initialization of crypto service with object manager
*/
#include <qdf_types.h>
#include <wlan_cmn.h>

查看文件

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. 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
@@ -17,7 +18,7 @@
*/
/**
* DOC: Public API intialization of crypto service with object manager
* DOC: Public API initialization of crypto service with object manager
*/
#ifndef __WLAN_CRYPTO_OBJ_MGR_I_