Initialize major_version and minor_version as v1.0 21/315021/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 02:41:34 +0000 (11:41 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 02:41:34 +0000 (11:41 +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: I9126dac23d9b7090932b8526fa63585fe1408364

src/tbm_backend_meson.c

index cee445b9f994ff608e9d6ab5aef0c8bf1d8a3fa1..ec3d9285483e9fb67522f0b742c4e4a0b9e7e18d 100644 (file)
@@ -1441,9 +1441,10 @@ fail_alloc_bufmgr_data:
 }
 
 hal_backend hal_backend_tbm_data = {
-       "meson",
-       "Samsung",
-       HAL_ABI_VERSION_TIZEN_6_5,
-       hal_backend_tbm_meson_init,
-       hal_backend_tbm_meson_exit
+       .name = "meson",
+       .vendor = "Samsung",
+       .init = hal_backend_tbm_meson_init,
+       .exit = hal_backend_tbm_meson_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };