Browse Source

qcacld-3.0: os_if: Fix misspellings

Fix misspellings in os_if/...

Change-Id: I040d4344f0065b1045e5ac7037c70123ca4231ef
CRs-Fixed: 3303622
Jeff Johnson 2 years ago
parent
commit
c9693d2e8b

+ 1 - 1
os_if/cp_stats/inc/wlan_cfg80211_mc_cp_stats.h

@@ -36,7 +36,7 @@ struct wlan_objmgr_psoc;
 
 /**
  * wlan_cfg80211_mc_cp_stats_get_wakelock_stats() - API to request wake lock
- * stats. Stats are returned to user space via vender event
+ * stats. Stats are returned to user space via vendor event
  * @psoc:    Pointer to psoc
  * @wiphy:   wiphy pointer
  *

+ 1 - 1
os_if/dp/inc/os_if_dp_lro.h

@@ -31,7 +31,7 @@
 
 #if defined(FEATURE_LRO)
 /**
- * osif_dp_lro_rx() - Handle Rx procesing via LRO
+ * osif_dp_lro_rx() - Handle Rx processing via LRO
  * @vdev: Vdev obj mgr
  * @nbuf: network buffer
  *

+ 1 - 1
os_if/dp/src/os_if_dp_txrx.c

@@ -129,7 +129,7 @@ void osif_dp_mark_pkt_type(struct sk_buff *skb)
 	struct ethhdr *eh = (struct ethhdr *)skb->data;
 
 	/*
-	 * Zero out CB before accessing it. Expection is that cb is accessed
+	 * Zero out CB before accessing it. Expectation is that cb is accessed
 	 * for the first time here on TX path in hard_start_xmit.
 	 */
 	qdf_mem_zero(skb->cb, sizeof(skb->cb));

+ 4 - 3
os_if/sync/inc/osif_driver_sync.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2019 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
@@ -106,7 +107,7 @@ __osif_driver_sync_trans_start_wait(struct osif_driver_sync **out_driver_sync,
 /**
  * osif_driver_sync_trans_stop() - stop a transition associated with
  *	@driver_sync
- * @driver_sync: the synchonization context tracking the transition
+ * @driver_sync: the synchronization context tracking the transition
  *
  * Return: none
  */
@@ -136,7 +137,7 @@ __osif_driver_sync_op_start(struct osif_driver_sync **out_driver_sync,
 
 /**
  * osif_driver_sync_op_stop() - stop an operation associated with @driver_sync
- * @driver_sync: the synchonization context tracking the operation
+ * @driver_sync: the synchronization context tracking the operation
  *
  * Return: none
  */
@@ -149,7 +150,7 @@ void __osif_driver_sync_op_stop(struct osif_driver_sync *driver_sync,
 /**
  * osif_driver_sync_wait_for_ops() - wait until all @driver_sync operations
  *	complete
- * @driver_sync: the synchonization context tracking the operations
+ * @driver_sync: the synchronization context tracking the operations
  *
  * Return: None
  */

+ 4 - 3
os_if/sync/inc/osif_psoc_sync.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2019 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
@@ -124,7 +125,7 @@ int osif_psoc_sync_trans_resume(struct device *dev,
 
 /**
  * osif_psoc_sync_trans_stop() - stop a transition associated with @psoc_sync
- * @psoc_sync: the synchonization context tracking the transition
+ * @psoc_sync: the synchronization context tracking the transition
  *
  * Return: none
  */
@@ -157,7 +158,7 @@ __osif_psoc_sync_op_start(struct device *dev,
 
 /**
  * osif_psoc_sync_op_stop() - stop an operation associated with @psoc_sync
- * @psoc_sync: the synchonization context tracking the operation
+ * @psoc_sync: the synchronization context tracking the operation
  *
  * Return: none
  */
@@ -169,7 +170,7 @@ void __osif_psoc_sync_op_stop(struct osif_psoc_sync *psoc_sync,
 
 /**
  * osif_psoc_sync_wait_for_ops() - wait until all @psoc_sync operations complete
- * @psoc_sync: the synchonization context tracking the operations
+ * @psoc_sync: the synchronization context tracking the operations
  *
  * Return: None
  */

+ 2 - 1
os_if/sync/inc/osif_sync.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2018-2019 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
@@ -27,7 +28,7 @@
  * While DSC is great at doing the required synchronization, it (by design) does
  * not address the gap between receiving a callback and involing the appropriate
  * DSC protections. For example, given an input net_device pointer from the
- * kernel, how does one safely aquire the appropriate DSC context? osif_sync
+ * kernel, how does one safely acquire the appropriate DSC context? osif_sync
  * implements this logic via wrapping DSC APIs with a registration mechanism.
  *
  * For example, after the creation of a new dsc_vdev context, osif_sync allows

+ 4 - 3
os_if/sync/inc/osif_vdev_sync.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2018-2019, 2021 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
@@ -124,7 +125,7 @@ __osif_vdev_sync_trans_start_wait(struct net_device *net_dev,
 
 /**
  * osif_vdev_sync_trans_stop() - stop a transition associated with @vdev_sync
- * @vdev_sync: the synchonization context tracking the transition
+ * @vdev_sync: the synchronization context tracking the transition
  *
  * Return: none
  */
@@ -157,7 +158,7 @@ __osif_vdev_sync_op_start(struct net_device *net_dev,
 
 /**
  * osif_vdev_sync_op_stop() - stop an operation associated with @vdev_sync
- * @vdev_sync: the synchonization context tracking the operation
+ * @vdev_sync: the synchronization context tracking the operation
  *
  * Return: none
  */
@@ -169,7 +170,7 @@ void __osif_vdev_sync_op_stop(struct osif_vdev_sync *vdev_sync,
 
 /**
  * osif_vdev_sync_wait_for_ops() - wait until all @vdev_sync operations complete
- * @vdev_sync: the synchonization context tracking the operations
+ * @vdev_sync: the synchronization context tracking the operations
  *
  * Return: None
  */

+ 1 - 1
os_if/tdls/inc/wlan_cfg80211_tdls.h

@@ -189,7 +189,7 @@ bool wlan_cfg80211_tdls_is_fw_6ghz_capable(struct wlan_objmgr_vdev *vdev);
  * @peer: MAC address of the TDLS peer
  * @action_code: type of TDLS mgmt frame to be sent
  * @dialog_token: dialog token used in the frame
- * @status_code: status to be incuded in the frame
+ * @status_code: status to be included in the frame
  * @peer_capability: peer capability information
  * @buf: additional IEs to be included
  * @len: length of additional Ies

+ 1 - 1
os_if/tdls/src/wlan_cfg80211_tdls.c

@@ -407,7 +407,7 @@ wlan_cfg80211_tdls_extract_params(struct wlan_objmgr_vdev *vdev,
 	req_info->supported_rates_len = params->supported_rates_len;
 
 	/* Note : The Maximum sizeof supported_rates sent by the Supplicant is
-	 * 32. The supported_rates array , for all the structures propogating
+	 * 32. The supported_rates array , for all the structures propagating
 	 * till Add Sta to the firmware has to be modified , if the supplicant
 	 * (ieee80211) is modified to send more rates.
 	 */