From: Chanwoo Choi Date: Mon, 1 Jul 2024 09:26:32 +0000 (+0900) Subject: halapi: common: Fix typo to hal_module X-Git-Tag: accepted/tizen/unified/20240702.091855^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7953ca07d373b2ead6c495938c4680ccd1d99b45;p=platform%2Fhal%2Fapi%2Fcommon.git halapi: common: Fix typo to hal_module Change-Id: I56e70c0676381dde7b5b3dbaf368468a836b14a4 Signed-off-by: Chanwoo Choi --- diff --git a/include/hal-common.h b/include/hal-common.h index b861b8a..11f0fe0 100644 --- a/include/hal-common.h +++ b/include/hal-common.h @@ -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