halapi: common: Add HAL_ABI_VERSION_TIZEN_7_0 59/265959/1
authorJaehoon Chung <jh80.chung@samsung.com>
Tue, 2 Nov 2021 10:34:10 +0000 (19:34 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Tue, 2 Nov 2021 10:34:10 +0000 (19:34 +0900)
Tizen version is updated to TIZEN_7.0.
If there is some case not to support the backward compatible, it needs to
check whether tizen_hal_abi_version is correct or not.

Change-Id: Ie7a4949f0ec3855af6a1e12cd71334b65a7c1f54
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
include/hal-common-interface.h

index dab26cb..56734ce 100644 (file)
@@ -26,12 +26,14 @@ extern "C" {
 enum hal_abi_version {
        HAL_ABI_VERSION_UNKNOWN = 0,
        HAL_ABI_VERSION_TIZEN_6_5,
+       HAL_ABI_VERSION_TIZEN_7_0,
        HAL_ABI_VERSION_END,
 };
 
 static const char *const hal_abi_version_str[] = {
        [HAL_ABI_VERSION_UNKNOWN]       = "Unknown HAL ABI Version",
        [HAL_ABI_VERSION_TIZEN_6_5]     = "HAL_ABI_VERSION_TIZEN_6_5",
+       [HAL_ABI_VERSION_TIZEN_7_0]     = "HAL_ABI_VERSION_TIZEN_7_0",
 };
 
 typedef struct __hal_backend {