Initialize major_version and minor_version as v1.0 41/315041/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 03:30:13 +0000 (12:30 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 03:30:13 +0000 (12:30 +0900)
Initialize major_version and minor_version as v1.0
in order to support the new HAL API versioning method
and then remove the deprecated abi_version field.

Change-Id: Ib8b259796054e752bc9c005f0f67400745524b1e

src/tdm_backend_exynos.c

index af5365082dfefb0dfd6a03662c9f39ba3e62fc46..bbb0d885022ccf509ecd3ff2da2b96893ba08ff3 100644 (file)
@@ -652,9 +652,10 @@ failed:
 }
 
 hal_backend hal_backend_tdm_data = {
-       "exynos",
-       "Samsung",
-       HAL_ABI_VERSION_TIZEN_6_5,
-       hal_backend_tdm_exynos_init,
-       hal_backend_tdm_exynos_exit
+       .name = "exynos",
+       .vendor = "Samsung",
+       .init = hal_backend_tdm_exynos_init,
+       .exit = hal_backend_tdm_exynos_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };