qcacmn: Fix typo "sucess"
Replace typo "sucess" with correct spelling "success" Change-Id: Ieacb299890210d67848268a389a57168e2a2badd CRs-Fixed: 2238309
This commit is contained in:
@@ -1687,7 +1687,7 @@ hal_rx_mpdu_get_fr_ds(uint8_t *buf)
|
||||
*
|
||||
* @buf: pointer to the start of RX PKT TLV headera
|
||||
* @mac_addr: pointer to mac address
|
||||
* Return: sucess/failure
|
||||
* Return: success/failure
|
||||
*/
|
||||
static inline
|
||||
QDF_STATUS hal_rx_mpdu_get_addr1(uint8_t *buf, uint8_t *mac_addr)
|
||||
@@ -1722,7 +1722,7 @@ QDF_STATUS hal_rx_mpdu_get_addr1(uint8_t *buf, uint8_t *mac_addr)
|
||||
*
|
||||
* @buf: pointer to the start of RX PKT TLV header
|
||||
* @mac_addr: pointer to mac address
|
||||
* Return: sucess/failure
|
||||
* Return: success/failure
|
||||
*/
|
||||
static inline
|
||||
QDF_STATUS hal_rx_mpdu_get_addr2(uint8_t *buf, uint8_t *mac_addr)
|
||||
@@ -1757,7 +1757,7 @@ QDF_STATUS hal_rx_mpdu_get_addr2(uint8_t *buf, uint8_t *mac_addr)
|
||||
*
|
||||
* @buf: pointer to the start of RX PKT TLV header
|
||||
* @mac_addr: pointer to mac address
|
||||
* Return: sucess/failure
|
||||
* Return: success/failure
|
||||
*/
|
||||
static inline
|
||||
QDF_STATUS hal_rx_mpdu_get_addr3(uint8_t *buf, uint8_t *mac_addr)
|
||||
@@ -1792,7 +1792,7 @@ QDF_STATUS hal_rx_mpdu_get_addr3(uint8_t *buf, uint8_t *mac_addr)
|
||||
*
|
||||
* @buf: pointer to the start of RX PKT TLV header
|
||||
* @mac_addr: pointer to mac address
|
||||
* Return: sucess/failure
|
||||
* Return: success/failure
|
||||
*/
|
||||
static inline
|
||||
QDF_STATUS hal_rx_mpdu_get_addr4(uint8_t *buf, uint8_t *mac_addr)
|
||||
|
@@ -163,7 +163,7 @@ void hif_dummy_nointrs(struct hif_softc *hif_sc)
|
||||
* hif_dummy_bus_configure - dummy call
|
||||
* hif_ctx: hif context
|
||||
*
|
||||
* Return: 0 for sucess
|
||||
* Return: 0 for success
|
||||
*/
|
||||
int hif_dummy_bus_configure(struct hif_softc *hif_sc)
|
||||
{
|
||||
@@ -177,7 +177,7 @@ int hif_dummy_bus_configure(struct hif_softc *hif_sc)
|
||||
* @config: configuration value to set
|
||||
* @config_len: configuration length
|
||||
*
|
||||
* Return: 0 for sucess
|
||||
* Return: 0 for success
|
||||
*/
|
||||
QDF_STATUS
|
||||
hif_dummy_get_config_item(struct hif_softc *hif_sc,
|
||||
|
@@ -486,7 +486,7 @@ void hif_sdio_disable_bus(struct hif_softc *hif_sc)
|
||||
* @config: configuration value to set
|
||||
* @config_len: configuration length
|
||||
*
|
||||
* Return: QDF_STATUS_SUCCESS for sucess
|
||||
* Return: QDF_STATUS_SUCCESS for success
|
||||
*/
|
||||
QDF_STATUS hif_sdio_get_config_item(struct hif_softc *hif_sc,
|
||||
int opcode, void *config, uint32_t config_len)
|
||||
|
@@ -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
|
||||
@@ -168,7 +168,7 @@ uint32_t ucfg_nan_get_ndi_delete_rsp_status(struct wlan_objmgr_vdev *vdev);
|
||||
* @psoc: pointer to psoc object
|
||||
* @cb_obj: callback struct to populate
|
||||
*
|
||||
* Return: callback struct on sucess, NULL otherwise
|
||||
* Return: callback struct on success, NULL otherwise
|
||||
*/
|
||||
QDF_STATUS ucfg_nan_get_callbacks(struct wlan_objmgr_psoc *psoc,
|
||||
struct nan_callbacks *cb_obj);
|
||||
@@ -230,7 +230,7 @@ int ucfg_nan_register_lim_callbacks(struct wlan_objmgr_psoc *psoc,
|
||||
* @psoc: pointer to psoc object
|
||||
* @cb_obj: callback struct to populate
|
||||
*
|
||||
* Return: callback struct on sucess, NULL otherwise
|
||||
* Return: callback struct on success, NULL otherwise
|
||||
*/
|
||||
QDF_STATUS ucfg_nan_get_callbacks(struct wlan_objmgr_psoc *psoc,
|
||||
struct nan_callbacks *cb_obj);
|
||||
|
@@ -1266,7 +1266,7 @@ QDF_STATUS wmi_extract_dcc_stats(struct wmi_unified *wmi_hdl,
|
||||
*
|
||||
* This function enable/disable mcc adaptive scheduler in fw.
|
||||
*
|
||||
* Return: QDF_STATUS_SUCCESS for sucess or error code
|
||||
* Return: QDF_STATUS_SUCCESS for success or error code
|
||||
*/
|
||||
QDF_STATUS wmi_unified_set_enable_disable_mcc_adaptive_scheduler_cmd(
|
||||
void *wmi_hdl, uint32_t mcc_adaptive_scheduler,
|
||||
|
@@ -461,7 +461,7 @@ static QDF_STATUS send_setup_install_key_cmd_non_tlv(wmi_unified_t wmi_handle,
|
||||
* @peer_addr: peer mac address
|
||||
* @param: pointer to hold peer flush tid parameter
|
||||
*
|
||||
* Return: 0 for sucess or error code
|
||||
* Return: 0 for success or error code
|
||||
*/
|
||||
static QDF_STATUS send_peer_flush_tids_cmd_non_tlv(wmi_unified_t wmi_handle,
|
||||
uint8_t peer_addr[IEEE80211_ADDR_LEN],
|
||||
|
@@ -463,7 +463,7 @@ static QDF_STATUS fake_vdev_set_param_cmd_tlv(wmi_unified_t wmi_handle,
|
||||
*
|
||||
* This function enable/disable mcc adaptive scheduler in fw.
|
||||
*
|
||||
* Return: QDF_STATUS_SUCCESS for sucess or error code
|
||||
* Return: QDF_STATUS_SUCCESS for success or error code
|
||||
*/
|
||||
static QDF_STATUS fake_set_enable_disable_mcc_adaptive_scheduler_cmd_tlv(
|
||||
wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler,
|
||||
|
@@ -515,7 +515,7 @@ static QDF_STATUS send_hidden_ssid_vdev_restart_cmd_tlv(wmi_unified_t wmi_handle
|
||||
* @peer_addr: peer mac address
|
||||
* @param: pointer to hold peer flush tid parameter
|
||||
*
|
||||
* Return: 0 for sucess or error code
|
||||
* Return: 0 for success or error code
|
||||
*/
|
||||
static QDF_STATUS send_peer_flush_tids_cmd_tlv(wmi_unified_t wmi,
|
||||
uint8_t peer_addr[IEEE80211_ADDR_LEN],
|
||||
@@ -4546,7 +4546,7 @@ static QDF_STATUS extract_ocb_dcc_stats_tlv(wmi_unified_t wmi_handle,
|
||||
*
|
||||
* This function enable/disable mcc adaptive scheduler in fw.
|
||||
*
|
||||
* Return: QDF_STATUS_SUCCESS for sucess or error code
|
||||
* Return: QDF_STATUS_SUCCESS for success or error code
|
||||
*/
|
||||
static QDF_STATUS send_set_enable_disable_mcc_adaptive_scheduler_cmd_tlv(
|
||||
wmi_unified_t wmi_handle, uint32_t mcc_adaptive_scheduler,
|
||||
@@ -10761,7 +10761,7 @@ static QDF_STATUS send_set_tdls_offchan_mode_cmd_tlv(wmi_unified_t wmi_handle,
|
||||
* @wmi_handle: wmi handle
|
||||
* @pwmaTdlsparams: TDLS params
|
||||
*
|
||||
* Return: 0 for sucess or error code
|
||||
* Return: 0 for success or error code
|
||||
*/
|
||||
static QDF_STATUS send_update_fw_tdls_state_cmd_tlv(wmi_unified_t wmi_handle,
|
||||
void *tdls_param, uint8_t tdls_state)
|
||||
|
Viittaa uudesa ongelmassa
Block a user