Parcourir la source

qcacld-3.0: Fix action_oui documentation

The kernel-doc script identified several documentation issues in
the action_oui component, so fix them.

Change-Id: I7fb63da7fbd7911b11e954bca824c2648e138679
CRs-Fixed: 3340062
Jeff Johnson il y a 2 ans
Parent
commit
744f70e8db

+ 2 - 2
components/action_oui/core/inc/wlan_action_oui_priv.h

@@ -103,7 +103,7 @@ struct action_oui_psoc_priv {
  * action_oui_parse() - Parse action oui string
  * @psoc_priv: pointer to action_oui psoc priv obj
  * @oui_string: string to be parsed
- * @ation_id: type of the action to be parsed
+ * @action_id: type of the action to be parsed
  *
  * This function parses the action oui string, extracts extensions and
  * stores them @action_oui_priv using list data structure.
@@ -118,7 +118,7 @@ action_oui_parse(struct action_oui_psoc_priv *psoc_priv,
 /**
  * action_oui_send() - Send action oui extensions to target_if.
  * @psoc_priv: pointer to action_oui psoc priv obj
- * @ation_id: type of the action to be send
+ * @action_id: type of the action to send
  *
  * This function sends action oui extensions to target_if.
  *

+ 6 - 6
components/action_oui/core/src/wlan_action_oui_parse.c

@@ -32,10 +32,10 @@
 
 /**
  * action_oui_string_to_hex() - convert string to uint8_t hex array
- * @token - string to be converted
- * @hex - output string to hold converted string
- * @no_of_lengths - count of possible lengths for input string
- * @possible_lengths - array holding possible lengths
+ * @token: string to be converted
+ * @hex: output string to hold converted string
+ * @no_of_lengths: count of possible lengths for input string
+ * @possible_lengths: array holding possible lengths
  *
  * This function converts the continuous input string of even length and
  * containing hexa decimal characters into hexa decimal array of uint8_t type.
@@ -80,7 +80,7 @@ static bool action_oui_string_to_hex(uint8_t *token, uint8_t *hex,
 
 /**
  * action_oui_token_string() - converts enum value to string
- * token_id: enum value to be converted to string
+ * @token_id: enum value to be converted to string
  *
  * This function converts the enum value of type action_oui_token_type
  * to string
@@ -471,7 +471,7 @@ validate_and_convert_capability(uint8_t *token,
 
 /**
  * action_oui_extension_store() - store action oui extension
- * @priv_obj: pointer to action_oui priv obj
+ * @psoc_priv: pointer to action_oui priv obj
  * @oui_priv: type of the action
  * @ext: oui extension to store in sme
  *