Initialize major_version and minor_version as v1.0 29/315029/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 02:27:20 +0000 (11:27 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 05:39:14 +0000 (14:39 +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: I8e53cd90af3ab82c65e152b992ece12291200c7d

src/tbm_backend_sprd.c

index 0e3b675f79752d7913a310fbc6e7faad0798d0ad..951431428d84eb0ca5da8acb6e4d1ce23a83154a 100644 (file)
@@ -1889,9 +1889,10 @@ fail_alloc_bufmgr_data:
 }
 
 hal_backend hal_backend_tbm_data = {
-       "sprd",
-       "Samsung",
-       HAL_ABI_VERSION_TIZEN_6_5,
-       hal_backend_tbm_sprd_init,
-       hal_backend_tbm_sprd_exit
+       .name = "sprd",
+       .vendor = "Samsung",
+       .init = hal_backend_tbm_sprd_init,
+       .exit = hal_backend_tbm_sprd_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };