halapi: common: Fix typo to hal_module 34/313734/1 accepted/tizen/unified/20240702.091855 accepted/tizen/unified/dev/20240703.060352 accepted/tizen/unified/x/20240704.023007
authorChanwoo Choi <cw00.choi@samsung.com>
Mon, 1 Jul 2024 09:26:32 +0000 (18:26 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Mon, 1 Jul 2024 09:26:32 +0000 (18:26 +0900)
Change-Id: I56e70c0676381dde7b5b3dbaf368468a836b14a4
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
include/hal-common.h

index b861b8ac57ffb4abdc84dd2c3faf537a8a2f7d9f..11f0fe0373ac7414571787eac0b997051f4f1783 100644 (file)
@@ -93,7 +93,7 @@ enum hal_common_backend_compatibility {
 
 /**
  * @brief Get the backend library name according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[out] Backend Library name of HAL module
  * @param[in] Arrary size of name[]
  * @return @c 0 on success, otherwise a negative error value
@@ -102,7 +102,7 @@ int hal_common_get_backend_library_name(enum hal_module module, char *name, int
 
 /**
  * @brief Get the backend symbol name according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[out] Backend symbol name of HAL module
  * @param[in] Arrary size of name[]
  * @return @c 0 on success, otherwise a negative error value
@@ -111,7 +111,7 @@ int hal_common_get_backend_symbol_name(enum hal_module module, char *name, int s
 
 /**
  * @brief Get the backend module name according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[out] Backend module name of HAL module
  * @param[in] Arrary size of name[]
  * @return @c 0 on success, otherwise a negative error value
@@ -120,7 +120,7 @@ int hal_common_get_backend_module_name(enum hal_module module, char *name, int s
 
 /**
  * @brief Get the backend data according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[out] Data pointer where 'hal_backend_[module]_funcs' instance
  *             should be stored from HAL backend binary.
  * @return @c 0 on success, otherwise a negative error value
@@ -129,7 +129,7 @@ int hal_common_get_backend(enum hal_module module, void **data);
 
 /**
  * @brief Put the backend data according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[in] Data pointer where 'hal_backend_[module]_funcs' instance
  * @return @c 0 on success, otherwise a negative error value
  */
@@ -137,7 +137,7 @@ int hal_common_put_backend(enum hal_module module, void *data);
 
 /**
  * @brief Get the backend data with the specific library name according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[out] Data pointer where 'hal_backend_[module]_funcs' instance
  *             should be stored from HAL backend binary.
  * @param[in] HAL backend library name which is not default library name
@@ -148,7 +148,7 @@ int hal_common_get_backend_with_library_name(enum hal_module module,
 
 /**
  * @brief Put the backend data with the specific library name according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[in] Data pointer where 'hal_backend_[module]_funcs' instance
  * @param[in] HAL backend library name which is not default library name
  * @return @c 0 on success, otherwise a negative error value
@@ -224,14 +224,14 @@ int hal_common_put_backend_with_library_name_v2(enum hal_module module,
 
 /**
  * @brief Get the backend HAL major/minor version according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @return @c 0 on success, otherwise a negative error value
  */
 int hal_common_get_backend_version(enum hal_module module, unsigned int *major_version, unsigned int *minor_version);
 
 /**
  * @brief Get the backend name according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[out] Backend name of HAL module
  * @param[in] Arrary size of name[]
  * @return @c positive integer value on success, otherwise a zero error value
@@ -240,7 +240,7 @@ int hal_common_get_backend_name(enum hal_module module, char *name, int size);
 
 /**
  * @brief Get the backend vendor description according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[out] Backend vendor description of HAL module
  * @param[in] Arrary size of vendor[]
  * @return @c positive integer value on success, otherwise a zero error value
@@ -249,14 +249,14 @@ int hal_common_get_backend_vendor(enum hal_module module, char *vendor, int size
 
 /**
  * @brief Get the number of the backend libraries according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @return @c 0 on success, otherwise a negative error value
  */
 int hal_common_get_backend_count(enum hal_module module);
 
 /**
  * @brief Get the backend library names according to the type of HAL module
- * @param[in] HAL module id among enum hal_moudle
+ * @param[in] HAL module id among enum hal_module
  * @param[out] Data pointer should be filled by backend library names
  * @param[in] Number of backend library of specific HAL module
  * @param[in] Maximum length of the library name