In hal-device-haptic module,
definition and declarations are should be follow native API principles.
To follow native style, comment and data structure/function naming is changed like below descriptions.
1. Naming enumeration with suffix '_e'
2. Naming enum type with prefix sub module
Change-Id: I3a10da467008f30e7cd55ac1f6803a8a11f646fa
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
/**
* @brief Enumerations of unlimited duration for the Haptic Module API.
+ * @since HAL_MODULE_DEVICE_HAPTIC 1.0
*/
typedef enum {
- HAPTIC_MODULE_DURATION_UNLIMITED = 0x7FFFFFFF,
-} haptic_module_duration;
+ HAL_DEVICE_HAPTIC_MODULE_DURATION_UNLIMITED = 0x7FFFFFFF,
+} hal_device_haptic_module_duration_e;
#ifdef __cplusplus
}